This repository was archived by the owner on Sep 6, 2025. It is now read-only.

Description
Could some of database & database cluster namespaces be changed for clarity?
For example, currently
client.Databases.GetAll() returns a list of database clusters.
client.Databases.GetAllDatabases(string id)returns a list of actual databases.
Could change to something like:
client.DatabaseClusters.GetAll() client.DatabaseClusters.GetById(string id) client.DatabaseClusters.Add() for database clusters and let the actual database methods continue to occupy the "Databases" namespace.