UserApiClientDeleteDatabaseAccessLevelAsync Method |
Clears the database access levels of a user for a given database.
As consequence the default database 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> DeleteDatabaseAccessLevelAsync(
string username,
string dbName
)
Public Overridable Function DeleteDatabaseAccessLevelAsync (
username As String,
dbName As String
) As Task(Of DeleteAccessLevelResponse)
public:
virtual Task<DeleteAccessLevelResponse^>^ DeleteDatabaseAccessLevelAsync(
String^ username,
String^ dbName
)
abstract DeleteDatabaseAccessLevelAsync :
username : string *
dbName : string -> Task<DeleteAccessLevelResponse>
override DeleteDatabaseAccessLevelAsync :
username : string *
dbName : string -> Task<DeleteAccessLevelResponse>
Parameters
- username
- Type: SystemString
The name of the user. - dbName
- Type: SystemString
The name of the database.
Return Value
Type:
TaskDeleteAccessLevelResponseImplements
IUserApiClientDeleteDatabaseAccessLevelAsync(String, String)See Also