All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.apigee.kotlin.outputs.AddonsConfigAddonsConfig.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.apigee.kotlin.outputs

import kotlin.Suppress

/**
 *
 * @property advancedApiOpsConfig Configuration for the Monetization add-on.
 * Structure is documented below.
 * @property apiSecurityConfig Configuration for the Monetization add-on.
 * Structure is documented below.
 * @property connectorsPlatformConfig Configuration for the Monetization add-on.
 * Structure is documented below.
 * @property integrationConfig Configuration for the Monetization add-on.
 * Structure is documented below.
 * @property monetizationConfig Configuration for the Monetization add-on.
 * Structure is documented below.
 */
public data class AddonsConfigAddonsConfig(
    public val advancedApiOpsConfig: AddonsConfigAddonsConfigAdvancedApiOpsConfig? = null,
    public val apiSecurityConfig: AddonsConfigAddonsConfigApiSecurityConfig? = null,
    public val connectorsPlatformConfig: AddonsConfigAddonsConfigConnectorsPlatformConfig? = null,
    public val integrationConfig: AddonsConfigAddonsConfigIntegrationConfig? = null,
    public val monetizationConfig: AddonsConfigAddonsConfigMonetizationConfig? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.apigee.outputs.AddonsConfigAddonsConfig): AddonsConfigAddonsConfig = AddonsConfigAddonsConfig(
            advancedApiOpsConfig = javaType.advancedApiOpsConfig().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.apigee.kotlin.outputs.AddonsConfigAddonsConfigAdvancedApiOpsConfig.Companion.toKotlin(args0)
                })
            }).orElse(null),
            apiSecurityConfig = javaType.apiSecurityConfig().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.apigee.kotlin.outputs.AddonsConfigAddonsConfigApiSecurityConfig.Companion.toKotlin(args0)
                })
            }).orElse(null),
            connectorsPlatformConfig = javaType.connectorsPlatformConfig().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.apigee.kotlin.outputs.AddonsConfigAddonsConfigConnectorsPlatformConfig.Companion.toKotlin(args0)
                })
            }).orElse(null),
            integrationConfig = javaType.integrationConfig().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.apigee.kotlin.outputs.AddonsConfigAddonsConfigIntegrationConfig.Companion.toKotlin(args0)
                })
            }).orElse(null),
            monetizationConfig = javaType.monetizationConfig().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.apigee.kotlin.outputs.AddonsConfigAddonsConfigMonetizationConfig.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy