
com.pulumi.azure.logicapps.kotlin.outputs.GetStandardResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.logicapps.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* A collection of values returned by getStandard.
* @property appServicePlanId
* @property appSettings
* @property bundleVersion
* @property clientAffinityEnabled
* @property clientCertificateMode
* @property connectionStrings
* @property customDomainVerificationId
* @property defaultHostname
* @property enabled
* @property httpsOnly
* @property id The provider-assigned unique ID for this managed resource.
* @property identities An `identity` block as defined below.
* @property kind
* @property location The Azure location where the Logic App Standard exists.
* @property name
* @property outboundIpAddresses
* @property possibleOutboundIpAddresses
* @property resourceGroupName
* @property siteConfig
* @property siteCredentials
* @property storageAccountAccessKey
* @property storageAccountName
* @property storageAccountShareName
* @property tags
* @property useExtensionBundle
* @property version
* @property virtualNetworkSubnetId
*/
public data class GetStandardResult(
public val appServicePlanId: String,
public val appSettings: Map,
public val bundleVersion: String,
public val clientAffinityEnabled: Boolean,
public val clientCertificateMode: String,
public val connectionStrings: List,
public val customDomainVerificationId: String,
public val defaultHostname: String,
public val enabled: Boolean,
public val httpsOnly: Boolean,
public val id: String,
public val identities: List,
public val kind: String,
public val location: String,
public val name: String,
public val outboundIpAddresses: String,
public val possibleOutboundIpAddresses: String,
public val resourceGroupName: String,
public val siteConfig: GetStandardSiteConfig,
public val siteCredentials: List,
public val storageAccountAccessKey: String,
public val storageAccountName: String,
public val storageAccountShareName: String,
public val tags: Map? = null,
public val useExtensionBundle: Boolean,
public val version: String,
public val virtualNetworkSubnetId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.logicapps.outputs.GetStandardResult):
GetStandardResult = GetStandardResult(
appServicePlanId = javaType.appServicePlanId(),
appSettings = javaType.appSettings().map({ args0 -> args0.key.to(args0.value) }).toMap(),
bundleVersion = javaType.bundleVersion(),
clientAffinityEnabled = javaType.clientAffinityEnabled(),
clientCertificateMode = javaType.clientCertificateMode(),
connectionStrings = javaType.connectionStrings().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.logicapps.kotlin.outputs.GetStandardConnectionString.Companion.toKotlin(args0)
})
}),
customDomainVerificationId = javaType.customDomainVerificationId(),
defaultHostname = javaType.defaultHostname(),
enabled = javaType.enabled(),
httpsOnly = javaType.httpsOnly(),
id = javaType.id(),
identities = javaType.identities().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.logicapps.kotlin.outputs.GetStandardIdentity.Companion.toKotlin(args0)
})
}),
kind = javaType.kind(),
location = javaType.location(),
name = javaType.name(),
outboundIpAddresses = javaType.outboundIpAddresses(),
possibleOutboundIpAddresses = javaType.possibleOutboundIpAddresses(),
resourceGroupName = javaType.resourceGroupName(),
siteConfig = javaType.siteConfig().let({ args0 ->
com.pulumi.azure.logicapps.kotlin.outputs.GetStandardSiteConfig.Companion.toKotlin(args0)
}),
siteCredentials = javaType.siteCredentials().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.logicapps.kotlin.outputs.GetStandardSiteCredential.Companion.toKotlin(args0)
})
}),
storageAccountAccessKey = javaType.storageAccountAccessKey(),
storageAccountName = javaType.storageAccountName(),
storageAccountShareName = javaType.storageAccountShareName(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
useExtensionBundle = javaType.useExtensionBundle(),
version = javaType.version(),
virtualNetworkSubnetId = javaType.virtualNetworkSubnetId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy