Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

AssetsConditions.md

File metadata and controls

31 lines (22 loc) · 1.23 KB

AssetsConditions

Describes the assets that are required/allowed/supported for a function.

Properties

Name Type Description Notes
conditions List[AssetCondition] All files in a function archive are checked against these conditions. A file that is not matched is ignored. [optional]
max_size str The maximum size of the archive (in bytes, unless unit is provided) [optional]

Example

from waylay.services.registry.models.assets_conditions import AssetsConditions

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

# convert the object into a dict
assets_conditions_dict = assets_conditions_instance.to_dict()
# create an instance of AssetsConditions from a dict
assets_conditions_form_dict = assets_conditions.from_dict(assets_conditions_dict)

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