
com.pulumi.azure.siterecovery.kotlin.outputs.GetReplicationRecoveryPlanRecoveryGroupPostAction.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.siterecovery.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property fabricLocation The fabric location of runbook or script.
* @property failOverDirections Directions of fail over.
* @property failOverTypes Types of fail over.
* @property manualActionInstruction Instructions of manual action.
* @property name The name of the Replication Plan.
* @property runbookId Id of runbook.
* @property scriptPath Path of action script.
* @property type Type of the action detail.
*/
public data class GetReplicationRecoveryPlanRecoveryGroupPostAction(
public val fabricLocation: String,
public val failOverDirections: List,
public val failOverTypes: List,
public val manualActionInstruction: String,
public val name: String,
public val runbookId: String,
public val scriptPath: String,
public val type: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.siterecovery.outputs.GetReplicationRecoveryPlanRecoveryGroupPostAction):
GetReplicationRecoveryPlanRecoveryGroupPostAction =
GetReplicationRecoveryPlanRecoveryGroupPostAction(
fabricLocation = javaType.fabricLocation(),
failOverDirections = javaType.failOverDirections().map({ args0 -> args0 }),
failOverTypes = javaType.failOverTypes().map({ args0 -> args0 }),
manualActionInstruction = javaType.manualActionInstruction(),
name = javaType.name(),
runbookId = javaType.runbookId(),
scriptPath = javaType.scriptPath(),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy