nyx_client.connection
Module for connection (3rd party data integrations) definitions in Nyx.
Classes
Connection
|
Represents a connection to a 3rd party data integration. |
Module Contents
-
class nyx_client.connection.Connection
Represents a connection to a 3rd party data integration.
-
id: str
the id of the connection
-
name: str
the name of the connection
-
json_blob: dict[str, Any]
json blob of non sensitive storage config
-
description: str = ''
the description of the connection
-
allow_update: bool = False
boolean to denote if upload is allowed from this connection
-
classmethod from_dict(value)
Builds a connection object from json.
- Parameters:
value (dict[str, Any]) – a dictionary of the connection object
- Returns:
Connection object
- Return type:
Connection