Bases: ModelFactoryMixin
A Connector
allows to connect and
access data stored in various places. The list of available connectors can
be found here.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
connector_type |
Union[ConnectorType, str]
|
Type of the connector to be created |
None
|
credentials |
dict
|
Connector credentials |
None
|
name |
Optional[str]
|
(optional) Connector name |
None
|
client |
Client
|
(optional) Client to connect to the backend |
None
|
Attributes:
Name | Type | Description |
---|---|---|
uid |
UID
|
UID fo the connector instance (creating internally) |
type |
ConnectorType
|
Type of the connector |
Source code in /opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/ydata/sdk/connectors/connector.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
|
create(connector_type, credentials, name=None, client=None)
staticmethod
Create a new connector.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
connector_type |
Union[ConnectorType, str]
|
Type of the connector to be created |
required |
credentials |
dict
|
Connector credentials |
required |
name |
Optional[str]
|
(optional) Connector name |
None
|
client |
Client
|
(optional) Client to connect to the backend |
None
|
Returns:
Type | Description |
---|---|
Connector
|
New connector |
Source code in /opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/ydata/sdk/connectors/connector.py
get(uid, client=None)
staticmethod
Get an existing connector.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uid |
UID
|
Connector identifier |
required |
client |
Client
|
(optional) Client to connect to the backend |
None
|
Returns:
Type | Description |
---|---|
Connector
|
Connector |
Source code in /opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/ydata/sdk/connectors/connector.py
list(client=None)
staticmethod
List the connectors instances.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
client |
Client
|
(optional) Client to connect to the backend |
None
|
Returns:
Type | Description |
---|---|
ConnectorsList
|
List of connectors |
Source code in /opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/site-packages/ydata/sdk/connectors/connector.py
ConnectorType
Bases: Enum
AWS_S3 = 'aws-s3'
class-attribute
instance-attribute
AWS S3 connector
AZURE_BLOB = 'azure-blob'
class-attribute
instance-attribute
Azure Blob connector
AZURE_SQL = 'azure-sql'
class-attribute
instance-attribute
AzureSQL connector
BIGQUERY = 'google-bigquery'
class-attribute
instance-attribute
BigQuery connector
FILE = 'file'
class-attribute
instance-attribute
File connector (placeholder)
GCS = 'gcs'
class-attribute
instance-attribute
Google Cloud Storage connector
MYSQL = 'mysql'
class-attribute
instance-attribute
MySQL connector
SNOWFLAKE = 'snowflake'
class-attribute
instance-attribute
Snowflake connector