
com.pulumi.googlenative.sqladmin.v1beta4.kotlin.outputs.DatabaseFlagsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.sqladmin.v1beta4.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Database flags for Cloud SQL instances.
* @property name The name of the flag. These flags are passed at instance startup, so include both server options and system variables. Flags are specified with underscores, not hyphens. For more information, see [Configuring Database Flags](https://cloud.google.com/sql/docs/mysql/flags) in the Cloud SQL documentation.
* @property value The value of the flag. Boolean flags are set to `on` for true and `off` for false. This field must be omitted if the flag doesn't take a value.
*/
public data class DatabaseFlagsResponse(
public val name: String,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.sqladmin.v1beta4.outputs.DatabaseFlagsResponse): DatabaseFlagsResponse = DatabaseFlagsResponse(
name = javaType.name(),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy