com.pulumi.gcp.projects.kotlin.inputs.ApiKeyRestrictionsAndroidKeyRestrictionsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.projects.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.projects.inputs.ApiKeyRestrictionsAndroidKeyRestrictionsArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property allowedApplications A list of Android applications that are allowed to make API calls with this key.
*/
public data class ApiKeyRestrictionsAndroidKeyRestrictionsArgs(
public val allowedApplications: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.projects.inputs.ApiKeyRestrictionsAndroidKeyRestrictionsArgs = com.pulumi.gcp.projects.inputs.ApiKeyRestrictionsAndroidKeyRestrictionsArgs.builder()
.allowedApplications(
allowedApplications.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
).build()
}
/**
* Builder for [ApiKeyRestrictionsAndroidKeyRestrictionsArgs].
*/
@PulumiTagMarker
public class ApiKeyRestrictionsAndroidKeyRestrictionsArgsBuilder internal constructor() {
private var allowedApplications:
Output>? = null
/**
* @param value A list of Android applications that are allowed to make API calls with this key.
*/
@JvmName("trlblhdgjaagacia")
public suspend fun allowedApplications(`value`: Output>) {
this.allowedApplications = value
}
@JvmName("jhmnbkfewlrcodsy")
public suspend fun allowedApplications(vararg values: Output) {
this.allowedApplications = Output.all(values.asList())
}
/**
* @param values A list of Android applications that are allowed to make API calls with this key.
*/
@JvmName("uhrevaabhtgbnucv")
public suspend fun allowedApplications(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy