com.pulumi.gcp.dataloss.kotlin.outputs.PreventionJobTriggerInspectJobActionSaveFindingsOutputConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.dataloss.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property outputSchema Schema used for writing the findings for Inspect jobs. This field is only used for
* Inspect and must be unspecified for Risk jobs. Columns are derived from the Finding
* object. If appending to an existing table, any columns from the predefined schema
* that are missing will be added. No columns in the existing table will be deleted.
* If unspecified, then all available columns will be used for a new table or an (existing)
* table with no schema, and no changes will be made to an existing table that has a schema.
* Only for use with external storage.
* Possible values are: `BASIC_COLUMNS`, `GCS_COLUMNS`, `DATASTORE_COLUMNS`, `BIG_QUERY_COLUMNS`, `ALL_COLUMNS`.
* @property table Information on the location of the target BigQuery Table.
* Structure is documented below.
*/
public data class PreventionJobTriggerInspectJobActionSaveFindingsOutputConfig(
public val outputSchema: String? = null,
public val table: PreventionJobTriggerInspectJobActionSaveFindingsOutputConfigTable,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataloss.outputs.PreventionJobTriggerInspectJobActionSaveFindingsOutputConfig): PreventionJobTriggerInspectJobActionSaveFindingsOutputConfig =
PreventionJobTriggerInspectJobActionSaveFindingsOutputConfig(
outputSchema = javaType.outputSchema().map({ args0 -> args0 }).orElse(null),
table = javaType.table().let({ args0 ->
com.pulumi.gcp.dataloss.kotlin.outputs.PreventionJobTriggerInspectJobActionSaveFindingsOutputConfigTable.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy