
com.pulumi.azure.kusto.kotlin.outputs.GetDatabaseResult.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.kusto.kotlin.outputs
import kotlin.Double
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getDatabase.
* @property clusterName
* @property hotCachePeriod The time the data that should be kept in cache for fast queries as ISO 8601 timespan.
* @property id The provider-assigned unique ID for this managed resource.
* @property location The Azure Region in which the managed Kusto Database exists.
* @property name
* @property resourceGroupName
* @property size The size of the database in bytes.
* @property softDeletePeriod The time the data should be kept before it stops being accessible to queries as ISO 8601 timespan.
*/
public data class GetDatabaseResult(
public val clusterName: String,
public val hotCachePeriod: String,
public val id: String,
public val location: String,
public val name: String,
public val resourceGroupName: String,
public val size: Double,
public val softDeletePeriod: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.kusto.outputs.GetDatabaseResult):
GetDatabaseResult = GetDatabaseResult(
clusterName = javaType.clusterName(),
hotCachePeriod = javaType.hotCachePeriod(),
id = javaType.id(),
location = javaType.location(),
name = javaType.name(),
resourceGroupName = javaType.resourceGroupName(),
size = javaType.size(),
softDeletePeriod = javaType.softDeletePeriod(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy