![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.advisor.kotlin.outputs.GetRecommendationsRecommendation.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.advisor.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property category The category of the recommendation.
* @property description The description of the issue or the opportunity identified by the recommendation.
* @property impact The business impact of the recommendation.
* @property recommendationName The name of the Advisor Recommendation.
* @property recommendationTypeId The recommendation type id of the Advisor Recommendation.
* @property resourceName The name of the identified resource of the Advisor Recommendation.
* @property resourceType The type of the identified resource of the Advisor Recommendation.
* @property suppressionNames A list of Advisor Suppression names of the Advisor Recommendation.
* @property updatedTime The most recent time that Advisor checked the validity of the recommendation..
*/
public data class GetRecommendationsRecommendation(
public val category: String,
public val description: String,
public val impact: String,
public val recommendationName: String,
public val recommendationTypeId: String,
public val resourceName: String,
public val resourceType: String,
public val suppressionNames: List,
public val updatedTime: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.advisor.outputs.GetRecommendationsRecommendation): GetRecommendationsRecommendation = GetRecommendationsRecommendation(
category = javaType.category(),
description = javaType.description(),
impact = javaType.impact(),
recommendationName = javaType.recommendationName(),
recommendationTypeId = javaType.recommendationTypeId(),
resourceName = javaType.resourceName(),
resourceType = javaType.resourceType(),
suppressionNames = javaType.suppressionNames().map({ args0 -> args0 }),
updatedTime = javaType.updatedTime(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy