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

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

package com.pulumi.azure.securitycenter.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map

/**
 *
 * @property additionalExtensionProperties Key/Value pairs that are required for some extensions.
 * > **NOTE:** If an extension is not defined, it will not be enabled.
 * > **NOTE:** Changing the pricing tier to `Standard` affects all resources of the given type in the subscription and could be quite costly.
 * @property name The name of extension.
 */
public data class SubscriptionPricingExtension(
    public val additionalExtensionProperties: Map? = null,
    public val name: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.securitycenter.outputs.SubscriptionPricingExtension): SubscriptionPricingExtension = SubscriptionPricingExtension(
            additionalExtensionProperties = javaType.additionalExtensionProperties().map({ args0 ->
                args0.key.to(args0.value)
            }).toMap(),
            name = javaType.name(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy