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

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

package com.pulumi.gcp.container.kotlin.outputs

import kotlin.Boolean
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property enabled
 * @property rayClusterLoggingConfigs The status of Ray Logging, which scrapes Ray cluster logs to Cloud Logging. Defaults to disabled; set enabled = true to enable.
 * @property rayClusterMonitoringConfigs The status of Ray Cluster monitoring, which shows Ray cluster metrics in Cloud Console. Defaults to disabled; set enabled = true to enable.
 */
public data class GetClusterAddonsConfigRayOperatorConfig(
    public val enabled: Boolean,
    public val rayClusterLoggingConfigs: List,
    public val rayClusterMonitoringConfigs: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.GetClusterAddonsConfigRayOperatorConfig): GetClusterAddonsConfigRayOperatorConfig = GetClusterAddonsConfigRayOperatorConfig(
            enabled = javaType.enabled(),
            rayClusterLoggingConfigs = javaType.rayClusterLoggingConfigs().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.container.kotlin.outputs.GetClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfig.Companion.toKotlin(args0)
                })
            }),
            rayClusterMonitoringConfigs = javaType.rayClusterMonitoringConfigs().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.container.kotlin.outputs.GetClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfig.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy