
com.pulumi.gcp.datastream.kotlin.outputs.StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDatasetTemplate.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.datastream.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property datasetIdPrefix If supplied, every created dataset will have its name prefixed by the provided value.
* The prefix and name will be separated by an underscore. i.e. _.
* @property kmsKeyName Describes the Cloud KMS encryption key that will be used to protect destination BigQuery
* table. The BigQuery Service Account associated with your project requires access to this
* encryption key. i.e. projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryptoKey}.
* See https://cloud.google.com/bigquery/docs/customer-managed-encryption for more information.
* - - -
* @property location The geographic location where the dataset should reside.
* See https://cloud.google.com/bigquery/docs/locations for supported locations.
*/
public data class
StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDatasetTemplate(
public val datasetIdPrefix: String? = null,
public val kmsKeyName: String? = null,
public val location: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.datastream.outputs.StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDatasetTemplate): StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDatasetTemplate =
StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDatasetTemplate(
datasetIdPrefix = javaType.datasetIdPrefix().map({ args0 -> args0 }).orElse(null),
kmsKeyName = javaType.kmsKeyName().map({ args0 -> args0 }).orElse(null),
location = javaType.location(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy