com.pulumi.azure.logicapps.kotlin.outputs.GetWorkflowResult.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.logicapps.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* A collection of values returned by getWorkflow.
* @property accessEndpoint The Access Endpoint for the Logic App Workflow
* @property connectorEndpointIpAddresses The list of access endpoint IP addresses of connector.
* @property connectorOutboundIpAddresses The list of outgoing IP addresses of connector.
* @property id The provider-assigned unique ID for this managed resource.
* @property identities An `identity` block as defined below.
* @property location The Azure location where the Logic App Workflow exists.
* @property logicAppIntegrationAccountId The ID of the integration account linked by this Logic App Workflow.
* @property name
* @property parameters A map of Key-Value pairs.
* @property resourceGroupName
* @property tags A mapping of tags assigned to the resource.
* @property workflowEndpointIpAddresses The list of access endpoint IP addresses of workflow.
* @property workflowOutboundIpAddresses The list of outgoing IP addresses of workflow.
* @property workflowSchema The Schema used for this Logic App Workflow.
* @property workflowVersion The version of the Schema used for this Logic App Workflow. Defaults to `1.0.0.0`.
*/
public data class GetWorkflowResult(
public val accessEndpoint: String,
public val connectorEndpointIpAddresses: List,
public val connectorOutboundIpAddresses: List,
public val id: String,
public val identities: List,
public val location: String,
public val logicAppIntegrationAccountId: String,
public val name: String,
public val parameters: Map,
public val resourceGroupName: String,
public val tags: Map,
public val workflowEndpointIpAddresses: List,
public val workflowOutboundIpAddresses: List,
public val workflowSchema: String,
public val workflowVersion: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.logicapps.outputs.GetWorkflowResult):
GetWorkflowResult = GetWorkflowResult(
accessEndpoint = javaType.accessEndpoint(),
connectorEndpointIpAddresses = javaType.connectorEndpointIpAddresses().map({ args0 -> args0 }),
connectorOutboundIpAddresses = javaType.connectorOutboundIpAddresses().map({ args0 -> args0 }),
id = javaType.id(),
identities = javaType.identities().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.logicapps.kotlin.outputs.GetWorkflowIdentity.Companion.toKotlin(args0)
})
}),
location = javaType.location(),
logicAppIntegrationAccountId = javaType.logicAppIntegrationAccountId(),
name = javaType.name(),
parameters = javaType.parameters().map({ args0 -> args0.key.to(args0.value) }).toMap(),
resourceGroupName = javaType.resourceGroupName(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
workflowEndpointIpAddresses = javaType.workflowEndpointIpAddresses().map({ args0 -> args0 }),
workflowOutboundIpAddresses = javaType.workflowOutboundIpAddresses().map({ args0 -> args0 }),
workflowSchema = javaType.workflowSchema(),
workflowVersion = javaType.workflowVersion(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy