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

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

package com.pulumi.azure.logicapps.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property action
 * @property headers
 * @property ipAddress
 * @property name The name of this Logic App.
 * @property priority
 * @property serviceTag
 * @property virtualNetworkSubnetId
 */
public data class GetStandardSiteConfigScmIpRestriction(
    public val action: String? = null,
    public val headers: GetStandardSiteConfigScmIpRestrictionHeaders,
    public val ipAddress: String? = null,
    public val name: String,
    public val priority: Int? = null,
    public val serviceTag: String? = null,
    public val virtualNetworkSubnetId: String? = null,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.logicapps.outputs.GetStandardSiteConfigScmIpRestriction):
            GetStandardSiteConfigScmIpRestriction = GetStandardSiteConfigScmIpRestriction(
            action = javaType.action().map({ args0 -> args0 }).orElse(null),
            headers = javaType.headers().let({ args0 ->
                com.pulumi.azure.logicapps.kotlin.outputs.GetStandardSiteConfigScmIpRestrictionHeaders.Companion.toKotlin(args0)
            }),
            ipAddress = javaType.ipAddress().map({ args0 -> args0 }).orElse(null),
            name = javaType.name(),
            priority = javaType.priority().map({ args0 -> args0 }).orElse(null),
            serviceTag = javaType.serviceTag().map({ args0 -> args0 }).orElse(null),
            virtualNetworkSubnetId = javaType.virtualNetworkSubnetId().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy