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

com.pulumi.azurenative.cdn.kotlin.outputs.DeliveryRuleResponseHeaderActionResponse.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.cdn.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Defines the response header action for the delivery rule.
 * @property name The name of the action for the delivery rule.
 * Expected value is 'ModifyResponseHeader'.
 * @property parameters Defines the parameters for the action.
 */
public data class DeliveryRuleResponseHeaderActionResponse(
    public val name: String,
    public val parameters: HeaderActionParametersResponse,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.cdn.outputs.DeliveryRuleResponseHeaderActionResponse): DeliveryRuleResponseHeaderActionResponse = DeliveryRuleResponseHeaderActionResponse(
            name = javaType.name(),
            parameters = javaType.parameters().let({ args0 ->
                com.pulumi.azurenative.cdn.kotlin.outputs.HeaderActionParametersResponse.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy