public async Task DeleteVariableGroup(int id) { await _client.DeleteVariableGroupAsync(Credentials.PROJECT, id); }
public void Delete(string project, int id) { _client.DeleteVariableGroupAsync(project, id).SyncResult(); }