com.pulumi.azurenative.datafactory.kotlin.outputs.AvroSinkResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.datafactory.kotlin.outputs
import kotlin.Any
import kotlin.String
import kotlin.Suppress
/**
* A copy activity Avro sink.
* @property disableMetricsCollection If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
* @property formatSettings Avro format settings.
* @property maxConcurrentConnections The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
* @property sinkRetryCount Sink retry count. Type: integer (or Expression with resultType integer).
* @property sinkRetryWait Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
* @property storeSettings Avro store settings.
* @property type Copy sink type.
* Expected value is 'AvroSink'.
* @property writeBatchSize Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
* @property writeBatchTimeout Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*/
public data class AvroSinkResponse(
public val disableMetricsCollection: Any? = null,
public val formatSettings: AvroWriteSettingsResponse? = null,
public val maxConcurrentConnections: Any? = null,
public val sinkRetryCount: Any? = null,
public val sinkRetryWait: Any? = null,
public val storeSettings: Any? = null,
public val type: String,
public val writeBatchSize: Any? = null,
public val writeBatchTimeout: Any? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.datafactory.outputs.AvroSinkResponse): AvroSinkResponse = AvroSinkResponse(
disableMetricsCollection = javaType.disableMetricsCollection().map({ args0 -> args0 }).orElse(null),
formatSettings = javaType.formatSettings().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.datafactory.kotlin.outputs.AvroWriteSettingsResponse.Companion.toKotlin(args0)
})
}).orElse(null),
maxConcurrentConnections = javaType.maxConcurrentConnections().map({ args0 -> args0 }).orElse(null),
sinkRetryCount = javaType.sinkRetryCount().map({ args0 -> args0 }).orElse(null),
sinkRetryWait = javaType.sinkRetryWait().map({ args0 -> args0 }).orElse(null),
storeSettings = javaType.storeSettings().map({ args0 -> args0 }).orElse(null),
type = javaType.type(),
writeBatchSize = javaType.writeBatchSize().map({ args0 -> args0 }).orElse(null),
writeBatchTimeout = javaType.writeBatchTimeout().map({ args0 -> args0 }).orElse(null),
)
}
}