com.pulumi.googlenative.deploymentmanager.alpha.kotlin.outputs.CollectionOverrideResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.deploymentmanager.alpha.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* CollectionOverride allows resource handling overrides for specific resources within a BaseType
* @property collection The collection that identifies this resource within its service.
* @property methodMap Custom verb method mappings to support unordered list API mappings.
* @property options The options to apply to this resource-level override
*/
public data class CollectionOverrideResponse(
public val collection: String,
public val methodMap: MethodMapResponse,
public val options: OptionsResponse,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.deploymentmanager.alpha.outputs.CollectionOverrideResponse): CollectionOverrideResponse = CollectionOverrideResponse(
collection = javaType.collection(),
methodMap = javaType.methodMap().let({ args0 ->
com.pulumi.googlenative.deploymentmanager.alpha.kotlin.outputs.MethodMapResponse.Companion.toKotlin(args0)
}),
options = javaType.options().let({ args0 ->
com.pulumi.googlenative.deploymentmanager.alpha.kotlin.outputs.OptionsResponse.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy