![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.securitycenter.kotlin.outputs.SubscriptionPricingExtension.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.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