ConoHaNet.OpenStackMember.ListDbBackups C# (CSharp) Method

ListDbBackups() public method

public ListDbBackups ( string databaseId, int offset = null, int limit = null, string sortKey = null, string sortType = null ) : IEnumerable
databaseId string
offset int
limit int
sortKey string
sortType string
return IEnumerable
        public IEnumerable<DbBackup> ListDbBackups(string databaseId, int? offset = null, int? limit = null, string sortKey = null, string sortType = null)
        {
            return DatabaseProvider.ListDbBackups(databaseId, offset, limit, sortKey, sortType, this.DefaultRegion, this.Identity);
        }
OpenStackMember