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

com.pulumi.azure.datafactory.kotlin.outputs.DatasetJsonHttpServerLocation.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.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.datafactory.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property dynamicFilenameEnabled Is the `filename` using dynamic expression, function or system variables? Defaults to `false`.
 * @property dynamicPathEnabled Is the `path` using dynamic expression, function or system variables? Defaults to `false`.
 * @property filename The filename of the file on the web server.
 * @property path The folder path to the file on the web server.
 * @property relativeUrl The base URL to the web server hosting the file.
 */
public data class DatasetJsonHttpServerLocation(
    public val dynamicFilenameEnabled: Boolean? = null,
    public val dynamicPathEnabled: Boolean? = null,
    public val filename: String,
    public val path: String,
    public val relativeUrl: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.DatasetJsonHttpServerLocation): DatasetJsonHttpServerLocation = DatasetJsonHttpServerLocation(
            dynamicFilenameEnabled = javaType.dynamicFilenameEnabled().map({ args0 -> args0 }).orElse(null),
            dynamicPathEnabled = javaType.dynamicPathEnabled().map({ args0 -> args0 }).orElse(null),
            filename = javaType.filename(),
            path = javaType.path(),
            relativeUrl = javaType.relativeUrl(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy