We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d6b56a commit a8cb645Copy full SHA for a8cb645
plugins/module_utils/rest_client.py
@@ -47,8 +47,10 @@ def list_records_raw(
47
endpoint: str,
48
timeout: Optional[float] = None,
49
) -> Any:
50
- """Results are obtained so that first off, all records are obtained and
51
- then filtered manually"""
+ """
+ Returns all records. No filtering is done.
52
+ Returned type is same as type returned by HyperCore API.
53
54
try:
55
records = self.client.get(path=endpoint, timeout=timeout).json
56
except TimeoutError as e:
0 commit comments