com.pulumi.digitalocean.kotlin.outputs.GetSpacesBucketsBucket.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.String
import kotlin.Suppress
/**
*
* @property bucketDomainName The FQDN of the bucket (e.g. bucket-name.nyc3.digitaloceanspaces.com)
* @property endpoint The FQDN of the bucket without the bucket name (e.g. nyc3.digitaloceanspaces.com)
* @property name The name of the Spaces bucket
* @property region The slug of the region where the bucket is stored.
* @property urn The uniform resource name of the bucket
*/
public data class GetSpacesBucketsBucket(
public val bucketDomainName: String,
public val endpoint: String,
public val name: String,
public val region: String,
public val urn: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.digitalocean.outputs.GetSpacesBucketsBucket): GetSpacesBucketsBucket = GetSpacesBucketsBucket(
bucketDomainName = javaType.bucketDomainName(),
endpoint = javaType.endpoint(),
name = javaType.name(),
region = javaType.region(),
urn = javaType.urn(),
)
}
}