![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.digitalocean.kotlin.outputs.GetContainerRegistryResult.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.Int
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getContainerRegistry.
* @property createdAt The date and time when the registry was created
* @property endpoint The URL endpoint of the container registry. Ex: `registry.digitalocean.com/my_registry`
* @property id The provider-assigned unique ID for this managed resource.
* @property name The name of the container registry
* @property region The slug identifier for the region
* @property serverUrl The domain of the container registry. Ex: `registry.digitalocean.com`
* @property storageUsageBytes The amount of storage used in the registry in bytes.
* @property subscriptionTierSlug The slug identifier for the subscription tier
*/
public data class GetContainerRegistryResult(
public val createdAt: String,
public val endpoint: String,
public val id: String,
public val name: String,
public val region: String,
public val serverUrl: String,
public val storageUsageBytes: Int,
public val subscriptionTierSlug: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.digitalocean.outputs.GetContainerRegistryResult): GetContainerRegistryResult = GetContainerRegistryResult(
createdAt = javaType.createdAt(),
endpoint = javaType.endpoint(),
id = javaType.id(),
name = javaType.name(),
region = javaType.region(),
serverUrl = javaType.serverUrl(),
storageUsageBytes = javaType.storageUsageBytes(),
subscriptionTierSlug = javaType.subscriptionTierSlug(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy