com.pulumi.gcp.storage.kotlin.outputs.GetBucketObjectsBucketObject.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.storage.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property contentType [Content-Type](https://tools.ietf.org/html/rfc7231#section-3.1.1.5) of the object data.
* @property mediaLink A url reference to download this object.
* @property name The name of the object.
* @property selfLink A url reference to this object.
* @property storageClass The [StorageClass](https://cloud.google.com/storage/docs/storage-classes) of the bucket object.
*/
public data class GetBucketObjectsBucketObject(
public val contentType: String,
public val mediaLink: String,
public val name: String,
public val selfLink: String,
public val storageClass: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.storage.outputs.GetBucketObjectsBucketObject): GetBucketObjectsBucketObject = GetBucketObjectsBucketObject(
contentType = javaType.contentType(),
mediaLink = javaType.mediaLink(),
name = javaType.name(),
selfLink = javaType.selfLink(),
storageClass = javaType.storageClass(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy