![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.digitalocean.kotlin.outputs.GetRegionsRegion.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-digitalocean-kotlin Show documentation
Show all versions of pulumi-digitalocean-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.digitalocean.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property available A boolean value that represents whether new Droplets can be created in this region.
* @property features A set of features available in this region.
* @property name The display name of the region.
* @property sizes A set of identifying slugs for the Droplet sizes available in this region.
* @property slug A human-readable string that is used as a unique identifier for each region.
*/
public data class GetRegionsRegion(
public val available: Boolean,
public val features: List,
public val name: String,
public val sizes: List,
public val slug: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.digitalocean.outputs.GetRegionsRegion): GetRegionsRegion = GetRegionsRegion(
available = javaType.available(),
features = javaType.features().map({ args0 -> args0 }),
name = javaType.name(),
sizes = javaType.sizes().map({ args0 -> args0 }),
slug = javaType.slug(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy