![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.datafactory.kotlin.outputs.AzureSynapseArtifactsLinkedServiceResponse.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
import kotlin.collections.List
import kotlin.collections.Map
/**
* Azure Synapse Analytics (Artifacts) linked service.
* @property annotations List of tags that can be used for describing the linked service.
* @property authentication Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
* @property connectVia The integration runtime reference.
* @property description Linked service description.
* @property endpoint https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
* @property parameters Parameters for linked service.
* @property type Type of linked service.
* Expected value is 'AzureSynapseArtifacts'.
* @property version Version of the linked service.
* @property workspaceResourceId The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
*/
public data class AzureSynapseArtifactsLinkedServiceResponse(
public val annotations: List? = null,
public val authentication: Any? = null,
public val connectVia: IntegrationRuntimeReferenceResponse? = null,
public val description: String? = null,
public val endpoint: Any,
public val parameters: Map? = null,
public val type: String,
public val version: String? = null,
public val workspaceResourceId: Any? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.datafactory.outputs.AzureSynapseArtifactsLinkedServiceResponse): AzureSynapseArtifactsLinkedServiceResponse = AzureSynapseArtifactsLinkedServiceResponse(
annotations = javaType.annotations().map({ args0 -> args0 }),
authentication = javaType.authentication().map({ args0 -> args0 }).orElse(null),
connectVia = javaType.connectVia().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.datafactory.kotlin.outputs.IntegrationRuntimeReferenceResponse.Companion.toKotlin(args0)
})
}).orElse(null),
description = javaType.description().map({ args0 -> args0 }).orElse(null),
endpoint = javaType.endpoint(),
parameters = javaType.parameters().map({ args0 ->
args0.key.to(
args0.value.let({ args0 ->
com.pulumi.azurenative.datafactory.kotlin.outputs.ParameterSpecificationResponse.Companion.toKotlin(args0)
}),
)
}).toMap(),
type = javaType.type(),
version = javaType.version().map({ args0 -> args0 }).orElse(null),
workspaceResourceId = javaType.workspaceResourceId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy