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

com.pulumi.azure.containerservice.kotlin.outputs.GroupContainerLivenessProbeHttpGet.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.containerservice.kotlin.outputs

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

/**
 *
 * @property httpHeaders A map of HTTP headers used to access on the container. Changing this forces a new resource to be created.
 * @property path Path to access on the HTTP server. Changing this forces a new resource to be created.
 * @property port Number of the port to access on the container. Changing this forces a new resource to be created.
 * @property scheme Scheme to use for connecting to the host. Possible values are `Http` and `Https`. Changing this forces a new resource to be created.
 */
public data class GroupContainerLivenessProbeHttpGet(
    public val httpHeaders: Map? = null,
    public val path: String? = null,
    public val port: Int? = null,
    public val scheme: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.GroupContainerLivenessProbeHttpGet): GroupContainerLivenessProbeHttpGet = GroupContainerLivenessProbeHttpGet(
            httpHeaders = javaType.httpHeaders().map({ args0 -> args0.key.to(args0.value) }).toMap(),
            path = javaType.path().map({ args0 -> args0 }).orElse(null),
            port = javaType.port().map({ args0 -> args0 }).orElse(null),
            scheme = javaType.scheme().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy