prefect.server.utilities.schemas
¶
Utilities for creating and working with Prefect REST API schemas.
IDBaseModel
¶
Bases: PrefectBaseModel
A PrefectBaseModel with an auto-generated UUID ID value.
The ID is reset on copy() and not included in equality comparisons.
Source code in prefect/server/utilities/schemas.py
356 357 358 359 360 361 362 363 364 365 366 |
|
ORMBaseModel
¶
Bases: IDBaseModel
A PrefectBaseModel with an auto-generated UUID ID value and created / updated timestamps, intended for compatibility with our standard ORM models.
The ID, created, and updated fields are reset on copy() and not included in equality comparisons.
Source code in prefect/server/utilities/schemas.py
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 |
|
PrefectBaseModel
¶
Bases: BaseModel
A base pydantic.BaseModel for all Prefect schemas and pydantic models.
As the basis for most Prefect schemas, this base model usually ignores extra fields that are passed to it at instantiation. Because adding new fields to API payloads is not considered a breaking change, this ensures that any Prefect client loading data from a server running a possibly-newer version of Prefect will be able to process those new fields gracefully. However, when PREFECT_TEST_MODE is on, extra fields are forbidden in order to catch subtle unintentional testing errors.
Source code in prefect/server/utilities/schemas.py
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 |
|
copy
¶
Duplicate a model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
update |
Dict
|
values to change/add to the model copy |
None
|
reset_fields |
bool
|
if True, reset the fields specified in |
False
|
kwargs |
Any
|
kwargs to pass to |
{}
|
Returns:
Type | Description |
---|---|
T
|
A new copy of the model |
Source code in prefect/server/utilities/schemas.py
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 |
|
dict
¶
Returns a representation of the model as a Python dictionary.
For more information on this distinction please see https://pydantic-docs.helpmanual.io/usage/exporting_models/#dictmodel-and-iteration
Parameters:
Name | Type | Description | Default |
---|---|---|---|
shallow |
bool
|
If True (default), nested Pydantic fields are also coerced to dicts. If false, they are left as Pydantic models. |
False
|
json_compatible |
bool
|
if True, objects are converted
into json-compatible representations, similar to calling
|
False
|
Returns:
Type | Description |
---|---|
dict
|
dict |
Source code in prefect/server/utilities/schemas.py
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 |
|
json
¶
Returns a representation of the model as JSON.
If include_secrets=True
, then SecretStr
and SecretBytes
objects are
fully revealed. Otherwise they are obfuscated.
Source code in prefect/server/utilities/schemas.py
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
|
subclass
classmethod
¶
Creates a subclass of this model containing only the specified fields.
See pydantic_subclass()
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
a name for the subclass |
None
|
include_fields |
List[str]
|
fields to include |
None
|
exclude_fields |
List[str]
|
fields to exclude |
None
|
Returns:
Name | Type | Description |
---|---|---|
BaseModel |
Type[B]
|
a subclass of this class |
Source code in prefect/server/utilities/schemas.py
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 |
|
FieldFrom
¶
Indicates that the given field is to be copied from another class by
copy_model_fields
.
Source code in prefect/server/utilities/schemas.py
395 396 397 398 399 400 |
|
copy_model_fields
¶
A class decorator which copies field definitions and field validators from other Pydantic BaseModel classes. This does not make the model a subclass of any of the copied field's owning classes, nor does this copy root validators from any of those classes. Note that you should still include the type hint for the field in order to make typing explicit.
Use this decorator and the corresponding FieldFrom
to compose response and
action schemas from other classes.
Example
from pydantic import BaseModel from prefect.server.utilities.schemas import copy_model_fields, FieldFrom
class Parent(BaseModel): ... name: str ... sensitive: str
@copy_model_fields class Derived(BaseModel): ... name: str = FieldFrom(Parent) ... my_own: str
In this example, Derived
will have the fields name
, and my_own
, with the
name
field being a complete copy of the Parent.name
field.
Source code in prefect/server/utilities/schemas.py
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 |
|
orjson_dumps
¶
Utility for dumping a value to JSON using orjson.
orjson.dumps returns bytes, to match standard json.dumps we need to decode.
Source code in prefect/server/utilities/schemas.py
120 121 122 123 124 125 126 |
|
orjson_dumps_extra_compatible
¶
Utility for dumping a value to JSON using orjson, but allows for 1) non-string keys: this is helpful for situations like pandas dataframes, which can result in non-string keys 2) numpy types: for serializing numpy arrays
orjson.dumps returns bytes, to match standard json.dumps we need to decode.
Source code in prefect/server/utilities/schemas.py
129 130 131 132 133 134 135 136 137 138 139 140 |
|
pydantic_subclass
¶
Creates a subclass of a Pydantic model that excludes certain fields.
Pydantic models use the fields attribute of their parent class to
determine inherited fields, so to create a subclass without fields, we
temporarily remove those fields from the parent fields and use
create_model
to dynamically generate a new subclass.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
base |
pydantic.BaseModel
|
a Pydantic BaseModel |
required |
name |
str
|
a name for the subclass. If not provided it will have the same name as the base class. |
None
|
include_fields |
List[str]
|
a set of field names to include.
If |
None
|
exclude_fields |
List[str]
|
a list of field names to exclude.
If |
None
|
Returns:
Type | Description |
---|---|
Type[B]
|
pydantic.BaseModel: a new model subclass that contains only the specified fields. |
Example
To subclass a model with a subset of fields:
class Parent(pydantic.BaseModel):
x: int = 1
y: int = 2
Child = pydantic_subclass(Parent, 'Child', exclude_fields=['y'])
assert hasattr(Child(), 'x')
assert not hasattr(Child(), 'y')
To subclass a model with a subset of fields but include a new field:
class Child(pydantic_subclass(Parent, exclude_fields=['y'])):
z: int = 3
assert hasattr(Child(), 'x')
assert not hasattr(Child(), 'y')
assert hasattr(Child(), 'z')
Source code in prefect/server/utilities/schemas.py
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 |
|