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

com.pulumi.azure.appservice.kotlin.outputs.GetLinuxFunctionAppAuthSettingsV2ActiveDirectoryV2.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.appservice.kotlin.outputs

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

/**
 *
 * @property allowedApplications The list of allowed Applications for the Default Authorisation Policy.
 * @property allowedAudiences The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
 * @property allowedGroups The list of allowed Group Names for the Default Authorisation Policy.
 * @property allowedIdentities The list of allowed Identities for the Default Authorisation Policy.
 * @property clientId The OAuth 2.0 client ID that was created for the app used for authentication.
 * @property clientSecretCertificateThumbprint The thumbprint of the certificate used for signing purposes.
 * @property clientSecretSettingName The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
 * @property jwtAllowedClientApplications The list of Allowed Client Applications in the JWT Claim.
 * @property jwtAllowedGroups The list of Allowed Groups in the JWT Claim.
 * @property loginParameters A map of key-value pairs sent to the Authorisation Endpoint when a user logs in.
 * @property tenantAuthEndpoint The Azure Tenant Endpoint for the Authenticating Tenant. e.g. `https://login.microsoftonline.com/{tenant-guid}/v2.0/`
 * @property wwwAuthenticationDisabled Is the www-authenticate provider omitted from the request?
 */
public data class GetLinuxFunctionAppAuthSettingsV2ActiveDirectoryV2(
    public val allowedApplications: List,
    public val allowedAudiences: List,
    public val allowedGroups: List,
    public val allowedIdentities: List,
    public val clientId: String,
    public val clientSecretCertificateThumbprint: String,
    public val clientSecretSettingName: String,
    public val jwtAllowedClientApplications: List,
    public val jwtAllowedGroups: List,
    public val loginParameters: Map,
    public val tenantAuthEndpoint: String,
    public val wwwAuthenticationDisabled: Boolean,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetLinuxFunctionAppAuthSettingsV2ActiveDirectoryV2): GetLinuxFunctionAppAuthSettingsV2ActiveDirectoryV2 =
            GetLinuxFunctionAppAuthSettingsV2ActiveDirectoryV2(
                allowedApplications = javaType.allowedApplications().map({ args0 -> args0 }),
                allowedAudiences = javaType.allowedAudiences().map({ args0 -> args0 }),
                allowedGroups = javaType.allowedGroups().map({ args0 -> args0 }),
                allowedIdentities = javaType.allowedIdentities().map({ args0 -> args0 }),
                clientId = javaType.clientId(),
                clientSecretCertificateThumbprint = javaType.clientSecretCertificateThumbprint(),
                clientSecretSettingName = javaType.clientSecretSettingName(),
                jwtAllowedClientApplications = javaType.jwtAllowedClientApplications().map({ args0 -> args0 }),
                jwtAllowedGroups = javaType.jwtAllowedGroups().map({ args0 -> args0 }),
                loginParameters = javaType.loginParameters().map({ args0 -> args0.key.to(args0.value) }).toMap(),
                tenantAuthEndpoint = javaType.tenantAuthEndpoint(),
                wwwAuthenticationDisabled = javaType.wwwAuthenticationDisabled(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy