ExternalPropertyFileReferences

@JsonClass(generateAdapter = true)
data class ExternalPropertyFileReferences(@Json(name = "addresses") val addresses: List<ExternalPropertyFileReference>? = null, @Json(name = "artifacts") val artifacts: List<ExternalPropertyFileReference>? = null, @Json(name = "conversion") val conversion: ExternalPropertyFileReference? = null, @Json(name = "driver") val driver: ExternalPropertyFileReference? = null, @Json(name = "extensions") val extensions: List<ExternalPropertyFileReference>? = null, @Json(name = "externalizedProperties") val externalizedProperties: ExternalPropertyFileReference? = null, @Json(name = "graphs") val graphs: List<ExternalPropertyFileReference>? = null, @Json(name = "invocations") val invocations: List<ExternalPropertyFileReference>? = null, @Json(name = "logicalLocations") val logicalLocations: List<ExternalPropertyFileReference>? = null, @Json(name = "policies") val policies: List<ExternalPropertyFileReference>? = null, @Json(name = "properties") val properties: PropertyBag? = null, @Json(name = "results") val results: List<ExternalPropertyFileReference>? = null, @Json(name = "taxonomies") val taxonomies: List<ExternalPropertyFileReference>? = null, @Json(name = "threadFlowLocations") val threadFlowLocations: List<ExternalPropertyFileReference>? = null, @Json(name = "translations") val translations: List<ExternalPropertyFileReference>? = null, @Json(name = "webRequests") val webRequests: List<ExternalPropertyFileReference>? = null, @Json(name = "webResponses") val webResponses: List<ExternalPropertyFileReference>? = null)(source)

References to external property files that should be inlined with the content of a root log file.

Since

0.12.0

Constructors

Link copied to clipboard
constructor(@Json(name = "addresses") addresses: List<ExternalPropertyFileReference>? = null, @Json(name = "artifacts") artifacts: List<ExternalPropertyFileReference>? = null, @Json(name = "conversion") conversion: ExternalPropertyFileReference? = null, @Json(name = "driver") driver: ExternalPropertyFileReference? = null, @Json(name = "extensions") extensions: List<ExternalPropertyFileReference>? = null, @Json(name = "externalizedProperties") externalizedProperties: ExternalPropertyFileReference? = null, @Json(name = "graphs") graphs: List<ExternalPropertyFileReference>? = null, @Json(name = "invocations") invocations: List<ExternalPropertyFileReference>? = null, @Json(name = "logicalLocations") logicalLocations: List<ExternalPropertyFileReference>? = null, @Json(name = "policies") policies: List<ExternalPropertyFileReference>? = null, @Json(name = "properties") properties: PropertyBag? = null, @Json(name = "results") results: List<ExternalPropertyFileReference>? = null, @Json(name = "taxonomies") taxonomies: List<ExternalPropertyFileReference>? = null, @Json(name = "threadFlowLocations") threadFlowLocations: List<ExternalPropertyFileReference>? = null, @Json(name = "translations") translations: List<ExternalPropertyFileReference>? = null, @Json(name = "webRequests") webRequests: List<ExternalPropertyFileReference>? = null, @Json(name = "webResponses") webResponses: List<ExternalPropertyFileReference>? = null)

Properties

Link copied to clipboard

An array of external property files containing run.addresses array to be merged with the root log file.

Link copied to clipboard

An array of external property files containing run.artifacts array to be merged with the root log file.

Link copied to clipboard

An external property file containing a run.conversion object to be merged with the root log file.

Link copied to clipboard

An external property file containing a run.driver object to be merged with the root log file.

Link copied to clipboard

An array of external property files containing run.extensions array to be merged with the root log file.

Link copied to clipboard

An external property file containing a run.properties object to be merged with the root log file.

Link copied to clipboard

An array of external property files containing a run.graphs object to be merged with the root log file.

Link copied to clipboard

An array of external property files containing run.invocations array to be merged with the root log file.

Link copied to clipboard

An array of external property files containing run.logicalLocations array to be merged with the root log file.

Link copied to clipboard

An array of external property files containing run.policies array to be merged with the root log file.

Link copied to clipboard
val properties: PropertyBag? = null

Key/value pairs that provide additional information about the external property files.

Link copied to clipboard

An array of external property files containing run.results array to be merged with the root log file.

Link copied to clipboard

An array of external property files containing run.taxonomies array to be merged with the root log file.

Link copied to clipboard

An array of external property files containing run.threadFlowLocations array to be merged with the root log file.

Link copied to clipboard

An array of external property files containing run.translations array to be merged with the root log file.

Link copied to clipboard

An array of external property files containing run.requests array to be merged with the root log file.

Link copied to clipboard

An array of external property files containing run.responses array to be merged with the root log file.