All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.appservice.kotlin.outputs.GetWindowsFunctionAppResult.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.21.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.appservice.kotlin.outputs

import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map

/**
 * A collection of values returned by getWindowsFunctionApp.
 * @property appSettings A `map of key-value pairs for App Settings and custom values.
 * @property authSettings A `auth_settings` block as defined below.
 * @property authSettingsV2s A `auth_settings_v2` block as defined below.
 * @property backups A `backup` block as defined below.
 * @property builtinLoggingEnabled Is the built-in logging enabled?
 * @property clientCertificateEnabled Is the use of Client Certificates enabled?
 * @property clientCertificateExclusionPaths Paths to exclude when using client certificates, separated by ;
 * @property clientCertificateMode The mode of the Function App's client certificates requirement for incoming requests.
 * @property connectionStrings One or more `connection_string` blocks as defined below.
 * @property contentShareForceDisabled Are Content Share Settings disabled?
 * @property customDomainVerificationId The identifier used by App Service to perform domain ownership verification via DNS TXT record.
 * @property dailyMemoryTimeQuota The amount of memory in gigabyte-seconds that your application is allowed to consume per day.
 * @property defaultHostname The default hostname of the Windows Function App.
 * @property enabled Is the Backup Job enabled?
 * @property ftpPublishBasicAuthenticationEnabled Are the default FTP Basic Authentication publishing credentials enabled.
 * @property functionsExtensionVersion The runtime version associated with the Function App.
 * @property hostingEnvironmentId The ID of the App Service Environment used by Function App.
 * @property httpsOnly Is the Function App only accessible via HTTPS?
 * @property id The provider-assigned unique ID for this managed resource.
 * @property identities A `identity` block as defined below.
 * @property kind The Kind value for this Windows Function App.
 * @property location The Azure Region where the Windows Function App exists.
 * @property name The Site Credentials Username used for publishing.
 * @property outboundIpAddressLists A list of outbound IP addresses. For example `["52.23.25.3", "52.143.43.12"]`
 * @property outboundIpAddresses A comma separated list of outbound IP addresses as a string. For example `52.23.25.3,52.143.43.12`.
 * @property possibleOutboundIpAddressLists A list of possible outbound IP addresses, not all of which are necessarily in use. This is a superset of `outbound_ip_address_list`. For example `["52.23.25.3", "52.143.43.12"]`.
 * @property possibleOutboundIpAddresses A comma separated list of possible outbound IP addresses as a string. For example `52.23.25.3,52.143.43.12,52.143.43.17`. This is a superset of `outbound_ip_addresses`.
 * @property publicNetworkAccessEnabled Is Public Network Access enabled for the Windows Function App.
 * @property resourceGroupName
 * @property servicePlanId The ID of the App Service Plan.
 * @property siteConfigs A `site_config` block as defined below.
 * @property siteCredentials A `site_credential` block as defined below.
 * @property stickySettings A `sticky_settings` block as defined below.
 * @property storageAccountAccessKey The access key which is used to access the backend storage account for the Function App.
 * @property storageAccountName The backend storage account name which is used by this Function App.
 * @property storageKeyVaultSecretId The Key Vault Secret ID, including version, that contains the Connection String used to connect to the storage account for this Function App.
 * @property storageUsesManagedIdentity Is the Function App using a Managed Identity to access the storage account?
 * @property tags A mapping of tags assigned to the Windows Function App.
 * @property virtualNetworkSubnetId The subnet id which the Windows Function App is vNet Integrated with.
 * @property webdeployPublishBasicAuthenticationEnabled Are the default WebDeploy Basic Authentication publishing credentials enabled.
 */
public data class GetWindowsFunctionAppResult(
    public val appSettings: Map,
    public val authSettings: List,
    public val authSettingsV2s: List,
    public val backups: List,
    public val builtinLoggingEnabled: Boolean,
    public val clientCertificateEnabled: Boolean,
    public val clientCertificateExclusionPaths: String,
    public val clientCertificateMode: String,
    public val connectionStrings: List,
    public val contentShareForceDisabled: Boolean,
    public val customDomainVerificationId: String,
    public val dailyMemoryTimeQuota: Int,
    public val defaultHostname: String,
    public val enabled: Boolean,
    public val ftpPublishBasicAuthenticationEnabled: Boolean,
    public val functionsExtensionVersion: String,
    public val hostingEnvironmentId: String,
    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 outboundIpAddressLists: List,
    public val outboundIpAddresses: String,
    public val possibleOutboundIpAddressLists: List,
    public val possibleOutboundIpAddresses: String,
    public val publicNetworkAccessEnabled: Boolean,
    public val resourceGroupName: String,
    public val servicePlanId: String,
    public val siteConfigs: List,
    public val siteCredentials: List,
    public val stickySettings: List,
    public val storageAccountAccessKey: String,
    public val storageAccountName: String,
    public val storageKeyVaultSecretId: String,
    public val storageUsesManagedIdentity: Boolean,
    public val tags: Map,
    public val virtualNetworkSubnetId: String,
    public val webdeployPublishBasicAuthenticationEnabled: Boolean,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetWindowsFunctionAppResult):
            GetWindowsFunctionAppResult = GetWindowsFunctionAppResult(
            appSettings = javaType.appSettings().map({ args0 -> args0.key.to(args0.value) }).toMap(),
            authSettings = javaType.authSettings().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.appservice.kotlin.outputs.GetWindowsFunctionAppAuthSetting.Companion.toKotlin(args0)
                })
            }),
            authSettingsV2s = javaType.authSettingsV2s().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.appservice.kotlin.outputs.GetWindowsFunctionAppAuthSettingsV2.Companion.toKotlin(args0)
                })
            }),
            backups = javaType.backups().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.appservice.kotlin.outputs.GetWindowsFunctionAppBackup.Companion.toKotlin(args0)
                })
            }),
            builtinLoggingEnabled = javaType.builtinLoggingEnabled(),
            clientCertificateEnabled = javaType.clientCertificateEnabled(),
            clientCertificateExclusionPaths = javaType.clientCertificateExclusionPaths(),
            clientCertificateMode = javaType.clientCertificateMode(),
            connectionStrings = javaType.connectionStrings().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.appservice.kotlin.outputs.GetWindowsFunctionAppConnectionString.Companion.toKotlin(args0)
                })
            }),
            contentShareForceDisabled = javaType.contentShareForceDisabled(),
            customDomainVerificationId = javaType.customDomainVerificationId(),
            dailyMemoryTimeQuota = javaType.dailyMemoryTimeQuota(),
            defaultHostname = javaType.defaultHostname(),
            enabled = javaType.enabled(),
            ftpPublishBasicAuthenticationEnabled = javaType.ftpPublishBasicAuthenticationEnabled(),
            functionsExtensionVersion = javaType.functionsExtensionVersion(),
            hostingEnvironmentId = javaType.hostingEnvironmentId(),
            httpsOnly = javaType.httpsOnly(),
            id = javaType.id(),
            identities = javaType.identities().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.appservice.kotlin.outputs.GetWindowsFunctionAppIdentity.Companion.toKotlin(args0)
                })
            }),
            kind = javaType.kind(),
            location = javaType.location(),
            name = javaType.name(),
            outboundIpAddressLists = javaType.outboundIpAddressLists().map({ args0 -> args0 }),
            outboundIpAddresses = javaType.outboundIpAddresses(),
            possibleOutboundIpAddressLists = javaType.possibleOutboundIpAddressLists().map({ args0 -> args0 }),
            possibleOutboundIpAddresses = javaType.possibleOutboundIpAddresses(),
            publicNetworkAccessEnabled = javaType.publicNetworkAccessEnabled(),
            resourceGroupName = javaType.resourceGroupName(),
            servicePlanId = javaType.servicePlanId(),
            siteConfigs = javaType.siteConfigs().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.appservice.kotlin.outputs.GetWindowsFunctionAppSiteConfig.Companion.toKotlin(args0)
                })
            }),
            siteCredentials = javaType.siteCredentials().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.appservice.kotlin.outputs.GetWindowsFunctionAppSiteCredential.Companion.toKotlin(args0)
                })
            }),
            stickySettings = javaType.stickySettings().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.appservice.kotlin.outputs.GetWindowsFunctionAppStickySetting.Companion.toKotlin(args0)
                })
            }),
            storageAccountAccessKey = javaType.storageAccountAccessKey(),
            storageAccountName = javaType.storageAccountName(),
            storageKeyVaultSecretId = javaType.storageKeyVaultSecretId(),
            storageUsesManagedIdentity = javaType.storageUsesManagedIdentity(),
            tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
            virtualNetworkSubnetId = javaType.virtualNetworkSubnetId(),
            webdeployPublishBasicAuthenticationEnabled = javaType.webdeployPublishBasicAuthenticationEnabled(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy