
com.pulumi.azure.monitoring.kotlin.outputs.GetActionGroupAutomationRunbookReceiver.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.monitoring.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property automationAccountId The automation account ID which holds this runbook and authenticates to Azure resources.
* @property isGlobalRunbook Indicates whether this instance is global runbook.
* @property name Specifies the name of the Action Group.
* @property runbookName The name for this runbook.
* @property serviceUri The URI where webhooks should be sent.
* @property useCommonAlertSchema Indicates whether to use common alert schema.
* @property webhookResourceId The resource id for webhook linked to this runbook.
*/
public data class GetActionGroupAutomationRunbookReceiver(
public val automationAccountId: String,
public val isGlobalRunbook: Boolean,
public val name: String,
public val runbookName: String,
public val serviceUri: String,
public val useCommonAlertSchema: Boolean,
public val webhookResourceId: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.monitoring.outputs.GetActionGroupAutomationRunbookReceiver):
GetActionGroupAutomationRunbookReceiver = GetActionGroupAutomationRunbookReceiver(
automationAccountId = javaType.automationAccountId(),
isGlobalRunbook = javaType.isGlobalRunbook(),
name = javaType.name(),
runbookName = javaType.runbookName(),
serviceUri = javaType.serviceUri(),
useCommonAlertSchema = javaType.useCommonAlertSchema(),
webhookResourceId = javaType.webhookResourceId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy