com.pulumi.azure.appservice.kotlin.inputs.LinuxFunctionAppAuthSettingsV2FacebookV2Args.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.appservice.kotlin.inputs
import com.pulumi.azure.appservice.inputs.LinuxFunctionAppAuthSettingsV2FacebookV2Args.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property appId The App ID of the Facebook app used for login.
* @property appSecretSettingName The app setting name that contains the `app_secret` value used for Facebook Login.
* !> **NOTE:** A setting with this name must exist in `app_settings` to function correctly.
* @property graphApiVersion The version of the Facebook API to be used while logging in.
* @property loginScopes The list of scopes that should be requested as part of Facebook Login authentication.
*/
public data class LinuxFunctionAppAuthSettingsV2FacebookV2Args(
public val appId: Output,
public val appSecretSettingName: Output,
public val graphApiVersion: Output? = null,
public val loginScopes: Output>? = null,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.appservice.inputs.LinuxFunctionAppAuthSettingsV2FacebookV2Args =
com.pulumi.azure.appservice.inputs.LinuxFunctionAppAuthSettingsV2FacebookV2Args.builder()
.appId(appId.applyValue({ args0 -> args0 }))
.appSecretSettingName(appSecretSettingName.applyValue({ args0 -> args0 }))
.graphApiVersion(graphApiVersion?.applyValue({ args0 -> args0 }))
.loginScopes(loginScopes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [LinuxFunctionAppAuthSettingsV2FacebookV2Args].
*/
@PulumiTagMarker
public class LinuxFunctionAppAuthSettingsV2FacebookV2ArgsBuilder internal constructor() {
private var appId: Output? = null
private var appSecretSettingName: Output? = null
private var graphApiVersion: Output? = null
private var loginScopes: Output>? = null
/**
* @param value The App ID of the Facebook app used for login.
*/
@JvmName("ykxjcrrubxbbromn")
public suspend fun appId(`value`: Output) {
this.appId = value
}
/**
* @param value The app setting name that contains the `app_secret` value used for Facebook Login.
* !> **NOTE:** A setting with this name must exist in `app_settings` to function correctly.
*/
@JvmName("phtytojokivnfagg")
public suspend fun appSecretSettingName(`value`: Output) {
this.appSecretSettingName = value
}
/**
* @param value The version of the Facebook API to be used while logging in.
*/
@JvmName("xrdnxgruvfurkjsg")
public suspend fun graphApiVersion(`value`: Output) {
this.graphApiVersion = value
}
/**
* @param value The list of scopes that should be requested as part of Facebook Login authentication.
*/
@JvmName("elgrsrvjskgagnor")
public suspend fun loginScopes(`value`: Output>) {
this.loginScopes = value
}
@JvmName("edityeqmrjxrvxah")
public suspend fun loginScopes(vararg values: Output) {
this.loginScopes = Output.all(values.asList())
}
/**
* @param values The list of scopes that should be requested as part of Facebook Login authentication.
*/
@JvmName("kuvqsvhaulmkourk")
public suspend fun loginScopes(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy