com.pulumi.gcp.backupdisasterrecovery.kotlin.outputs.GetDataSourceDataSourceGcpResourceComputeInstanceDataSourceProperty.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.backupdisasterrecovery.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property description The description of the Compute Engine instance.
* @property machineType The machine type of the instance.
* @property name Name of the compute instance backed up by the datasource.
* @property totalDiskCount The total number of disks attached to the Instance.
* @property totalDiskSizeGb The sum of all the disk sizes.
*/
public data class GetDataSourceDataSourceGcpResourceComputeInstanceDataSourceProperty(
public val description: String,
public val machineType: String,
public val name: String,
public val totalDiskCount: String,
public val totalDiskSizeGb: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.backupdisasterrecovery.outputs.GetDataSourceDataSourceGcpResourceComputeInstanceDataSourceProperty): GetDataSourceDataSourceGcpResourceComputeInstanceDataSourceProperty =
GetDataSourceDataSourceGcpResourceComputeInstanceDataSourceProperty(
description = javaType.description(),
machineType = javaType.machineType(),
name = javaType.name(),
totalDiskCount = javaType.totalDiskCount(),
totalDiskSizeGb = javaType.totalDiskSizeGb(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy