
com.pulumi.gcp.cloudrunv2.kotlin.outputs.ServiceTemplateContainerVolumeMount.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.cloudrunv2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property mountPath Path within the container at which the volume should be mounted. Must not contain ':'. For Cloud SQL volumes, it can be left empty, or must otherwise be /cloudsql. All instances defined in the Volume will be available as /cloudsql/[instance]. For more information on Cloud SQL volumes, visit https://cloud.google.com/sql/docs/mysql/connect-run
* @property name This must match the Name of a Volume.
*/
public data class ServiceTemplateContainerVolumeMount(
public val mountPath: String,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudrunv2.outputs.ServiceTemplateContainerVolumeMount): ServiceTemplateContainerVolumeMount = ServiceTemplateContainerVolumeMount(
mountPath = javaType.mountPath(),
name = javaType.name(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy