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

com.pulumi.azure.logicapps.kotlin.outputs.WorkflowAccessControl.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.21.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.logicapps.kotlin.outputs

import kotlin.Suppress

/**
 *
 * @property action A `action` block as defined below.
 * @property content A `content` block as defined below.
 * @property trigger A `trigger` block as defined below.
 * @property workflowManagement A `workflow_management` block as defined below.
 */
public data class WorkflowAccessControl(
    public val action: WorkflowAccessControlAction? = null,
    public val content: WorkflowAccessControlContent? = null,
    public val trigger: WorkflowAccessControlTrigger? = null,
    public val workflowManagement: WorkflowAccessControlWorkflowManagement? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.logicapps.outputs.WorkflowAccessControl):
            WorkflowAccessControl = WorkflowAccessControl(
            action = javaType.action().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.logicapps.kotlin.outputs.WorkflowAccessControlAction.Companion.toKotlin(args0)
                })
            }).orElse(null),
            content = javaType.content().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.logicapps.kotlin.outputs.WorkflowAccessControlContent.Companion.toKotlin(args0)
                })
            }).orElse(null),
            trigger = javaType.trigger().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.logicapps.kotlin.outputs.WorkflowAccessControlTrigger.Companion.toKotlin(args0)
                })
            }).orElse(null),
            workflowManagement = javaType.workflowManagement().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.logicapps.kotlin.outputs.WorkflowAccessControlWorkflowManagement.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy