![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.synapse.kotlin.outputs.GetIotHubDataConnectionResult.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.synapse.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Class representing an iot hub data connection.
* @property consumerGroup The iot hub consumer group.
* @property dataFormat The data format of the message. Optionally the data format can be added to each message.
* @property eventSystemProperties System properties of the iot hub
* @property id Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
* @property iotHubResourceId The resource ID of the Iot hub to be used to create a data connection.
* @property kind Kind of the endpoint for the data connection
* Expected value is 'IotHub'.
* @property location Resource location.
* @property mappingRuleName The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message.
* @property name The name of the resource
* @property provisioningState The provisioned state of the resource.
* @property sharedAccessPolicyName The name of the share access policy
* @property systemData Azure Resource Manager metadata containing createdBy and modifiedBy information.
* @property tableName The table where the data should be ingested. Optionally the table information can be added to each message.
* @property type The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
public data class GetIotHubDataConnectionResult(
public val consumerGroup: String,
public val dataFormat: String? = null,
public val eventSystemProperties: List? = null,
public val id: String,
public val iotHubResourceId: String,
public val kind: String,
public val location: String? = null,
public val mappingRuleName: String? = null,
public val name: String,
public val provisioningState: String,
public val sharedAccessPolicyName: String,
public val systemData: SystemDataResponse,
public val tableName: String? = null,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.synapse.outputs.GetIotHubDataConnectionResult): GetIotHubDataConnectionResult = GetIotHubDataConnectionResult(
consumerGroup = javaType.consumerGroup(),
dataFormat = javaType.dataFormat().map({ args0 -> args0 }).orElse(null),
eventSystemProperties = javaType.eventSystemProperties().map({ args0 -> args0 }),
id = javaType.id(),
iotHubResourceId = javaType.iotHubResourceId(),
kind = javaType.kind(),
location = javaType.location().map({ args0 -> args0 }).orElse(null),
mappingRuleName = javaType.mappingRuleName().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
provisioningState = javaType.provisioningState(),
sharedAccessPolicyName = javaType.sharedAccessPolicyName(),
systemData = javaType.systemData().let({ args0 ->
com.pulumi.azurenative.synapse.kotlin.outputs.SystemDataResponse.Companion.toKotlin(args0)
}),
tableName = javaType.tableName().map({ args0 -> args0 }).orElse(null),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy