PoolResponse

Pool serializer for responses.

Properties

NameTypeDescriptionNotes
deferred_slotsint
descriptionstr[optional]
include_deferredbool
namestr
occupied_slotsint
open_slotsint
queued_slotsint
running_slotsint
scheduled_slotsint
slotsint

Example

from airflow_client.client.models.pool_response import PoolResponse

# TODO update the JSON string below
json = "{}"
# create an instance of PoolResponse from a JSON string
pool_response_instance = PoolResponse.from_json(json)
# print the JSON string representation of the object
print(PoolResponse.to_json())

# convert the object into a dict
pool_response_dict = pool_response_instance.to_dict()
# create an instance of PoolResponse from a dict
pool_response_from_dict = PoolResponse.from_dict(pool_response_dict)

[Back to Model list] [Back to API list] [Back to README]