@@ -33,7 +33,9 @@ def types(self, *filters):
3333
3434 API Documentation: https://www.linode.com/docs/api/databases/#managed-database-types-list
3535
36- :param filters: Any number of filters to apply to the query.
36+ :param filters: Any number of filters to apply to this query.
37+ See :doc:`Filtering Collections</linode_api4/objects/filtering>`
38+ for more details on filtering.
3739
3840 :returns: A list of types that match the query.
3941 :rtype: PaginatedList of DatabaseType
@@ -51,7 +53,9 @@ def engines(self, *filters):
5153
5254 API Documentation: https://www.linode.com/docs/api/databases/#managed-database-engines-list
5355
54- :param filters: Any number of filters to apply to the query.
56+ :param filters: Any number of filters to apply to this query.
57+ See :doc:`Filtering Collections</linode_api4/objects/filtering>`
58+ for more details on filtering.
5559
5660 :returns: A list of types that match the query.
5761 :rtype: PaginatedList of DatabaseEngine
@@ -65,6 +69,8 @@ def instances(self, *filters):
6569 API Documentation: https://www.linode.com/docs/api/databases/#managed-databases-list-all
6670
6771 :param filters: Any number of filters to apply to this query.
72+ See :doc:`Filtering Collections</linode_api4/objects/filtering>`
73+ for more details on filtering.
6874
6975 :returns: A list of databases that matched the query.
7076 :rtype: PaginatedList of Database
@@ -78,6 +84,8 @@ def mysql_instances(self, *filters):
7884 API Documentation: https://www.linode.com/docs/api/databases/#managed-mysql-databases-list
7985
8086 :param filters: Any number of filters to apply to this query.
87+ See :doc:`Filtering Collections</linode_api4/objects/filtering>`
88+ for more details on filtering.
8189
8290 :returns: A list of MySQL databases that matched the query.
8391 :rtype: PaginatedList of MySQLDatabase
@@ -141,6 +149,8 @@ def postgresql_instances(self, *filters):
141149 API Documentation: https://www.linode.com/docs/api/databases/#managed-postgresql-databases-list
142150
143151 :param filters: Any number of filters to apply to this query.
152+ See :doc:`Filtering Collections</linode_api4/objects/filtering>`
153+ for more details on filtering.
144154
145155 :returns: A list of PostgreSQL databases that matched the query.
146156 :rtype: PaginatedList of PostgreSQLDatabase
0 commit comments