SecurityModificationType Simple Type (DeploymentManifest)

Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013

Specifies the allowable security modifications for a specified user, user group, role, or role assignment.

Definition

<xs:simpleType name="SecurityModificationType">
        <xs:restriction base="xs:string">
                <xs:enumeration value="Add" />
                <xs:enumeration value="Delete" />
                <xs:enumeration value="Update" />
                <xs:enumeration value="MemberAdd" />
                <xs:enumeration value="MemberDelete" />
                <xs:enumeration value="RoleAdd" />
                <xs:enumeration value="RoleDelete" />
                <xs:enumeration value="RoleUpdate" />
                <xs:enumeration value="RoleAssignmentAdd" />
                <xs:enumeration value="RoleAssignmentDelete" />
        </xs:restriction>
</xs:simpleType>

Enumeration values

Value Description
Add
Adds a security object (user, group, or role)
Delete
Deletes a security object.
Update
Updates a security object.
MemberAdd
Adds a member to a SharePoint group.
MemberDelete
Deletes a member from a SharePoint group.
RoleAdd
Adds a SharePoint role.
RoleDelete
Deletes a SharePoint role.
RoleUpdate
Updates a SharePoint role.
RoleAssignmentAdd
Adds an assignment to a SharePoint role.
RoleAssignmentDelete
Deletes an assignment from a SharePoint role.

See also