We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a836653 commit 3bc30eaCopy full SHA for 3bc30ea
2 files changed
sphinx_docs/models.rst
@@ -9,6 +9,12 @@ SDK Client
9
:members:
10
:special-members: __init__
11
12
+Edge Endpoint API
13
+=====================
14
+
15
+.. autoclass:: groundlight.edge.api.EdgeEndpointApi
16
+ :members:
17
18
API Response Objects
19
=====================
20
src/groundlight/edge/api.py
@@ -16,6 +16,12 @@ class EdgeEndpointApi:
"""
Namespace for operations that are specific to the Edge Endpoint,
such as setting and getting the EdgeEndpoint configuration.
+ Currently only available through :class:`~groundlight.ExperimentalApi`. Accessed via the
21
+ ``edge`` attribute::
22
23
+ gl = ExperimentalApi()
24
+ gl.edge.set_config(config)
25
26
27
def __init__(self, client) -> None:
0 commit comments