AccessPermissionType Enumeration

 

Specifies the type of access permission.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:   Microsoft.MasterDataServices.Services.DataContracts
Assembly:  Microsoft.MasterDataServices.Services.Contracts (in Microsoft.MasterDataServices.Services.Contracts.dll)

[FlagsAttribute]
[DataContractAttribute(Name = "AccessPermissionType", Namespace = "http://schemas.microsoft.com/sqlserver/masterdataservices/2009/09")]
public enum class AccessPermissionType

Member nameDescription
All

The object can be created, updated, and deleted.

Create

The object can be created.

CreateDelete

The object can be created and deleted.

CreateUpdate

The object can be created and updated.

Delete

The object can be deleted.

Read

The object can be read. All other permissions also include read permission. I.e. it is not possible to have create permission (or update or delete) without also having Read permission.

Update

The object can be updated.

UpdateDelete

The object can be updated and deleted.

The AccessPermissionType simple type specifies the permission that is assigned to a principal for reading, creating, updating, or deleting an MDS object.

Return to top
Show: