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

com.pulumi.azure.kusto.kotlin.outputs.GetDatabaseResult.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.21.0.0
Show newest version
@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