UserApiClientDeleteCollectionAccessLevelAsync Method |
Clears the collection access levels of a user for a given database.
As consequence the default collection access level is used.
If there is no defined default database access level, it defaults to 'No access'.
You need permission to the '_system' database in order to execute this REST call.
Namespace:
ArangoDBNetStandard.UserApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax public virtual Task<DeleteAccessLevelResponse> DeleteCollectionAccessLevelAsync(
string username,
string dbName,
string collectionName
)
Public Overridable Function DeleteCollectionAccessLevelAsync (
username As String,
dbName As String,
collectionName As String
) As Task(Of DeleteAccessLevelResponse)
public:
virtual Task<DeleteAccessLevelResponse^>^ DeleteCollectionAccessLevelAsync(
String^ username,
String^ dbName,
String^ collectionName
)
abstract DeleteCollectionAccessLevelAsync :
username : string *
dbName : string *
collectionName : string -> Task<DeleteAccessLevelResponse>
override DeleteCollectionAccessLevelAsync :
username : string *
dbName : string *
collectionName : string -> Task<DeleteAccessLevelResponse>
Parameters
- username
- Type: SystemString
The name of the user. - dbName
- Type: SystemString
The name of the database. - collectionName
- Type: SystemString
The name of the collection.
Return Value
Type:
TaskDeleteAccessLevelResponseImplements
IUserApiClientDeleteCollectionAccessLevelAsync(String, String, String)See Also