
com.pulumi.googlenative.bigquery.v2.kotlin.outputs.SparkStatisticsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.bigquery.v2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
*
* @property endpoints Endpoints generated for the Spark job.
* @property loggingInfo Logging info is used to generate a link to Cloud Logging.
* @property sparkJobId Spark job id if a Spark job is created successfully.
* @property sparkJobLocation Location where the Spark job is executed.
*/
public data class SparkStatisticsResponse(
public val endpoints: Map,
public val loggingInfo: SparkLoggingInfoResponse,
public val sparkJobId: String,
public val sparkJobLocation: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.bigquery.v2.outputs.SparkStatisticsResponse): SparkStatisticsResponse = SparkStatisticsResponse(
endpoints = javaType.endpoints().map({ args0 -> args0.key.to(args0.value) }).toMap(),
loggingInfo = javaType.loggingInfo().let({ args0 ->
com.pulumi.googlenative.bigquery.v2.kotlin.outputs.SparkLoggingInfoResponse.Companion.toKotlin(args0)
}),
sparkJobId = javaType.sparkJobId(),
sparkJobLocation = javaType.sparkJobLocation(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy