
com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotSiteConfigHandlerMapping.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.appservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property arguments Specify the command-line arguments to be passed to the script processor.
* @property extension Specify which extension to be handled by the specified FastCGI application.
* @property scriptProcessorPath Specify the absolute path to the FastCGI application.
*/
public data class WindowsWebAppSlotSiteConfigHandlerMapping(
public val arguments: String? = null,
public val extension: String,
public val scriptProcessorPath: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.WindowsWebAppSlotSiteConfigHandlerMapping):
WindowsWebAppSlotSiteConfigHandlerMapping = WindowsWebAppSlotSiteConfigHandlerMapping(
arguments = javaType.arguments().map({ args0 -> args0 }).orElse(null),
extension = javaType.extension(),
scriptProcessorPath = javaType.scriptProcessorPath(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy