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

com.pulumi.gcp.backupdisasterrecovery.kotlin.outputs.GetDataSourceDataSourceGcpResourceComputeInstanceDataSourceProperty.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.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