delegatedAdminAccessAssignment 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 an assignment of administrative roles to a Microsoft partner using delegated administration. The administrative roles are assigned to the Microsoft partner through an access container (like a security group). Once it's active, the members of the access container get access to the roles specified in the access details.
Methods
Method | Return type | Description |
---|---|---|
Create | delegatedAdminAccessAssignment | Create a new delegatedAdminAccessAssignment object. |
List | delegatedAdminAccessAssignment collection | Get a list of the delegatedAdminAccessAssignment objects and their properties. |
Get | delegatedAdminAccessAssignment | Read the properties and relationships of a delegatedAdminAccessAssignment object. |
Update | delegatedAdminAccessAssignment | Update the properties of a delegatedAdminAccessAssignment object. |
Delete | None | Delete a delegatedAdminAccessAssignment object. |
Properties
Property | Type | Description |
---|---|---|
accessContainer | delegatedAdminAccessContainer | The access container through which members are assigned access. For example, a security group. |
accessDetails | delegatedAdminAccessDetails | The access details containing the identifiers of the administrative roles that the partner is assigned in the customer tenant. |
createdDateTime | DateTimeOffset | The date and time in ISO 8601 format and in UTC time when the access assignment was created. Read-only. |
id | String | The unique identifier of the access assignment. Read-only. Inherited from entity. |
lastModifiedDateTime | DateTimeOffset | The date and time in ISO 8601 and in UTC time when this access assignment was last modified. Read-only. |
status | delegatedAdminAccessAssignmentStatus | The status of the access assignment. Read-only. The possible values are: pending , active , deleting , deleted , error , unknownFutureValue . |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.delegatedAdminAccessAssignment",
"id": "String (identifier)",
"status": "String",
"accessContainer": {
"@odata.type": "microsoft.graph.delegatedAdminAccessContainer"
},
"accessDetails": {
"@odata.type": "microsoft.graph.delegatedAdminAccessDetails"
},
"createdDateTime": "String (timestamp)",
"lastModifiedDateTime": "String (timestamp)"
}