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

com.pulumi.gcp.datafusion.kotlin.outputs.InstanceAccelerator.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.datafusion.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property acceleratorType The type of an accelator for a CDF instance.
 * Possible values are: `CDC`, `HEALTHCARE`, `CCAI_INSIGHTS`.
 * @property state The type of an accelator for a CDF instance.
 * Possible values are: `ENABLED`, `DISABLED`.
 */
public data class InstanceAccelerator(
    public val acceleratorType: String,
    public val state: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.datafusion.outputs.InstanceAccelerator): InstanceAccelerator = InstanceAccelerator(
            acceleratorType = javaType.acceleratorType(),
            state = javaType.state(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy