
com.pulumi.azurenative.appplatform.kotlin.outputs.ScaleRuleAuthResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.appplatform.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Auth Secrets for Azure Spring Apps App Instance Scale Rule
* @property secretRef Name of the Azure Spring Apps App Instance secret from which to pull the auth params.
* @property triggerParameter Trigger Parameter that uses the secret
*/
public data class ScaleRuleAuthResponse(
public val secretRef: String? = null,
public val triggerParameter: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.appplatform.outputs.ScaleRuleAuthResponse): ScaleRuleAuthResponse = ScaleRuleAuthResponse(
secretRef = javaType.secretRef().map({ args0 -> args0 }).orElse(null),
triggerParameter = javaType.triggerParameter().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy