com.pulumi.googlenative.apigateway.v1beta.kotlin.outputs.ApigatewayApiConfigFileResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.apigateway.v1beta.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A lightweight description of a file.
* @property contents The bytes that constitute the file.
* @property path The file path (full or relative path). This is typically the path of the file when it is uploaded.
*/
public data class ApigatewayApiConfigFileResponse(
public val contents: String,
public val path: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.apigateway.v1beta.outputs.ApigatewayApiConfigFileResponse): ApigatewayApiConfigFileResponse = ApigatewayApiConfigFileResponse(
contents = javaType.contents(),
path = javaType.path(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy