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

com.pulumi.gcp.recaptcha.kotlin.outputs.EnterpriseKeyAndroidSettings.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.recaptcha.kotlin.outputs

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

/**
 *
 * @property allowAllPackageNames If set to true, it means allowed_package_names will not be enforced.
 * @property allowedPackageNames Android package names of apps allowed to use the key. Example: 'com.companyname.appname'
 */
public data class EnterpriseKeyAndroidSettings(
    public val allowAllPackageNames: Boolean? = null,
    public val allowedPackageNames: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.recaptcha.outputs.EnterpriseKeyAndroidSettings): EnterpriseKeyAndroidSettings = EnterpriseKeyAndroidSettings(
            allowAllPackageNames = javaType.allowAllPackageNames().map({ args0 -> args0 }).orElse(null),
            allowedPackageNames = javaType.allowedPackageNames().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy