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)

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

Constructors

Link copied to clipboard
fun ExternalPropertyFileReferences(    @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
val addresses: List<ExternalPropertyFileReference>? = null

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

Link copied to clipboard
val artifacts: List<ExternalPropertyFileReference>? = null

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

Link copied to clipboard
val conversion: ExternalPropertyFileReference? = null

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

Link copied to clipboard
val driver: ExternalPropertyFileReference? = null

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

Link copied to clipboard
val extensions: List<ExternalPropertyFileReference>? = null

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

Link copied to clipboard
val externalizedProperties: ExternalPropertyFileReference? = null

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

Link copied to clipboard
val graphs: List<ExternalPropertyFileReference>? = null

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

Link copied to clipboard
val invocations: List<ExternalPropertyFileReference>? = null

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

Link copied to clipboard
val logicalLocations: List<ExternalPropertyFileReference>? = null

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

Link copied to clipboard
val policies: List<ExternalPropertyFileReference>? = null

An array of external property files containing run.policies arrays 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
val results: List<ExternalPropertyFileReference>? = null

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

Link copied to clipboard
val taxonomies: List<ExternalPropertyFileReference>? = null

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

Link copied to clipboard
val threadFlowLocations: List<ExternalPropertyFileReference>? = null

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

Link copied to clipboard
val translations: List<ExternalPropertyFileReference>? = null

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

Link copied to clipboard
val webRequests: List<ExternalPropertyFileReference>? = null

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

Link copied to clipboard
val webResponses: List<ExternalPropertyFileReference>? = null

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

Sources

Link copied to clipboard