Dataset Types API
Description
A dataset type defines the type of a specific Dataset.
The following dataset types are pre-defined, along with their dataset_type_id:
| Dataset Type | dataset_type_id |
|---|---|
| Default | 0 |
| Sensor | 1 |
| Trait | 2 |
| Script | 3 |
| Model | 4 |
| Procedure | 5 |
| Other | 6 |
Module
This module defines the DatasetType class, which represents a type or category for datasets.
It includes methods for creating, retrieving, updating, and deleting dataset types, as well as methods for checking existence, searching, and managing additional information.
This module includes the following methods:
exists: Check if a dataset type with the given name exists.create: Create a new dataset type.get: Retrieve a dataset type by its name.get_by_id: Retrieve a dataset type by its ID.get_all: Retrieve all dataset types.search: Search for dataset types based on various criteria.update: Update the details of a dataset type.delete: Delete a dataset type.refresh: Refresh the dataset type's data from the database.get_info: Get the additional information of the dataset type.set_info: Set the additional information of the dataset type.
DatasetType
Bases: APIBase
Represents a type or category for datasets.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
Optional[ID]
|
The unique identifier of the dataset type. |
dataset_type_name |
str
|
The name of the dataset type. |
dataset_type_info |
Optional[dict]
|
Additional information about the dataset type. |
Source code in gemini/api/dataset_type.py
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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 | |
__repr__()
__str__()
create(dataset_type_name, dataset_type_info=None)
classmethod
Create a new dataset type. If a dataset type with same name already exists, it will return the existing one.
Examples:
>>> DatasetType.create("example_dataset_type", {"description": "An example dataset type"})
DatasetType(dataset_type_name='example_dataset_type', id=...)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dataset_type_name
|
str
|
The name of the dataset type. |
required |
dataset_type_info
|
dict
|
Additional information about the dataset type. Defaults to {{}}. |
None
|
Returns: Optional["DatasetType"]: The created dataset type, or None if an error occurred.
Source code in gemini/api/dataset_type.py
delete()
Delete the dataset type.
Examples:
>>> dataset_type = DatasetType.get("example_dataset_type")
>>> success = dataset_type.delete()
>>> print(success)
True
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if the dataset type was deleted, False otherwise. |
Source code in gemini/api/dataset_type.py
exists(dataset_type_name)
classmethod
Check if a dataset type with the given name exists.
Examples:
>>> DatasetType.exists("example_dataset_type")
True
>>> DatasetType.exists("non_existent_type")
False
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dataset_type_name
|
str
|
The name of the dataset type. |
required |
Returns: bool: True if the dataset type exists, False otherwise.
Source code in gemini/api/dataset_type.py
get(dataset_type_name)
classmethod
Retrieve a dataset type by its name.
Examples:
>>> DatasetType.get("example_dataset_type")
DatasetType(dataset_type_name='example_dataset_type', id=...)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dataset_type_name
|
str
|
The name of the dataset type. |
required |
Returns: Optional["DatasetType"]: The dataset type, or None if not found.
Source code in gemini/api/dataset_type.py
get_all(limit=None, offset=None)
classmethod
Retrieve all dataset types.
Examples:
>>> DatasetType.get_all()
[DatasetType(dataset_type_name='example_dataset_type', id=...), DatasetType(dataset_type_name='another_dataset_type', id=...)]
Returns:
| Type | Description |
|---|---|
Optional[List[DatasetType]]
|
Optional[List["DatasetType"]]: A list of all dataset types, or None if an error occurred. |
Source code in gemini/api/dataset_type.py
get_by_id(id)
classmethod
Retrieve a dataset type by its ID.
Examples:
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
id
|
UUID | int | str
|
The ID of the dataset type. |
required |
Returns: Optional["DatasetType"]: The dataset type, or None if not found.
Source code in gemini/api/dataset_type.py
get_info()
Get the additional information of the dataset type.
Examples:
>>> dataset_type = DatasetType.get("example_dataset_type")
>>> info = dataset_type.get_info()
>>> print(info)
{'description': 'An example dataset type'}
Returns:
| Type | Description |
|---|---|
Optional[dict]
|
Optional[dict]: The dataset type's info, or None if not found. |
Source code in gemini/api/dataset_type.py
refresh()
Refresh the dataset type's data from the database. It is rarely called by the user as it is automatically called on access.
Examples:
>>> dataset_type = DatasetType.get("example_dataset_type")
>>> refreshed_dataset_type = dataset_type.refresh()
>>> print(refreshed_dataset_type)
DatasetType(dataset_type_name='example_dataset_type', id=...)
Returns:
| Type | Description |
|---|---|
Optional[DatasetType]
|
Optional["DatasetType"]: The refreshed dataset type, or None if an error occurred. |
Source code in gemini/api/dataset_type.py
search(dataset_type_name=None, dataset_type_info=None)
classmethod
Search for dataset types based on various criteria.
Examples:
>>> DatasetType.search(dataset_type_name="example_dataset_type")
[DatasetType(dataset_type_name='example_dataset_type', id=...)]
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dataset_type_name
|
str
|
The name of the dataset type. Defaults to None. |
None
|
dataset_type_info
|
dict
|
Additional information about the dataset type. Defaults to None. |
None
|
Returns: Optional[List["DatasetType"]]: A list of matching dataset types, or None if an error occurred.
Source code in gemini/api/dataset_type.py
set_info(dataset_type_info)
Set the additional information of the dataset type.
Examples:
>>> dataset_type = DatasetType.get("example_dataset_type")
>>> updated_dataset_type = dataset_type.set_info({"description": "Updated description"})
>>> print(updated_dataset_type.get_info())
{'description': 'Updated description'}
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dataset_type_info
|
dict
|
The new information to set. |
required |
Returns: Optional["DatasetType"]: The updated dataset type, or None if an error occurred.
Source code in gemini/api/dataset_type.py
update(dataset_type_name=None, dataset_type_info=None)
Update the details of the dataset type.
Examples:
>>> dataset_type = DatasetType.get("example_dataset_type")
>>> updated_dataset_type = dataset_type.update(dataset_type_name="new_name", dataset_type_info{"description": "Updated description"})
>>> print(updated_dataset_type)
DatasetType(dataset_type_name='new_name', id=...)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dataset_type_name
|
str
|
The new name of the dataset type. Defaults to None. |
None
|
dataset_type_info
|
dict
|
The new information. Defaults to None. |
None
|
Returns: Optional["DatasetType"]: The updated dataset type, or None if an error occurred.