1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
# This file was generated by jschema_to_python version 1.2.3.
import attr
@attr.s
class ExternalProperties(object):
"""The top-level element of an external property file."""
addresses = attr.ib(default=None, metadata={"schema_property_name": "addresses"})
artifacts = attr.ib(default=None, metadata={"schema_property_name": "artifacts"})
conversion = attr.ib(default=None, metadata={"schema_property_name": "conversion"})
driver = attr.ib(default=None, metadata={"schema_property_name": "driver"})
extensions = attr.ib(default=None, metadata={"schema_property_name": "extensions"})
externalized_properties = attr.ib(default=None, metadata={"schema_property_name": "externalizedProperties"})
graphs = attr.ib(default=None, metadata={"schema_property_name": "graphs"})
guid = attr.ib(default=None, metadata={"schema_property_name": "guid"})
invocations = attr.ib(default=None, metadata={"schema_property_name": "invocations"})
logical_locations = attr.ib(default=None, metadata={"schema_property_name": "logicalLocations"})
policies = attr.ib(default=None, metadata={"schema_property_name": "policies"})
properties = attr.ib(default=None, metadata={"schema_property_name": "properties"})
results = attr.ib(default=None, metadata={"schema_property_name": "results"})
run_guid = attr.ib(default=None, metadata={"schema_property_name": "runGuid"})
schema = attr.ib(default=None, metadata={"schema_property_name": "schema"})
taxonomies = attr.ib(default=None, metadata={"schema_property_name": "taxonomies"})
thread_flow_locations = attr.ib(default=None, metadata={"schema_property_name": "threadFlowLocations"})
translations = attr.ib(default=None, metadata={"schema_property_name": "translations"})
version = attr.ib(default=None, metadata={"schema_property_name": "version"})
web_requests = attr.ib(default=None, metadata={"schema_property_name": "webRequests"})
web_responses = attr.ib(default=None, metadata={"schema_property_name": "webResponses"})
|