![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.datafactory.kotlin.outputs.AzureBlobFSSourceResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.datafactory.kotlin.outputs
import kotlin.Any
import kotlin.String
import kotlin.Suppress
/**
* A copy activity Azure BlobFS source.
* @property disableMetricsCollection If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
* @property maxConcurrentConnections The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
* @property recursive If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
* @property skipHeaderLineCount Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
* @property sourceRetryCount Source retry count. Type: integer (or Expression with resultType integer).
* @property sourceRetryWait Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
* @property treatEmptyAsNull Treat empty as null. Type: boolean (or Expression with resultType boolean).
* @property type Copy source type.
* Expected value is 'AzureBlobFSSource'.
*/
public data class AzureBlobFSSourceResponse(
public val disableMetricsCollection: Any? = null,
public val maxConcurrentConnections: Any? = null,
public val recursive: Any? = null,
public val skipHeaderLineCount: Any? = null,
public val sourceRetryCount: Any? = null,
public val sourceRetryWait: Any? = null,
public val treatEmptyAsNull: Any? = null,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.datafactory.outputs.AzureBlobFSSourceResponse): AzureBlobFSSourceResponse = AzureBlobFSSourceResponse(
disableMetricsCollection = javaType.disableMetricsCollection().map({ args0 -> args0 }).orElse(null),
maxConcurrentConnections = javaType.maxConcurrentConnections().map({ args0 -> args0 }).orElse(null),
recursive = javaType.recursive().map({ args0 -> args0 }).orElse(null),
skipHeaderLineCount = javaType.skipHeaderLineCount().map({ args0 -> args0 }).orElse(null),
sourceRetryCount = javaType.sourceRetryCount().map({ args0 -> args0 }).orElse(null),
sourceRetryWait = javaType.sourceRetryWait().map({ args0 -> args0 }).orElse(null),
treatEmptyAsNull = javaType.treatEmptyAsNull().map({ args0 -> args0 }).orElse(null),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy