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

com.pulumi.azure.apimanagement.kotlin.outputs.BackendProxy.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.apimanagement.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property password The password to connect to the proxy server.
 * @property url The URL of the proxy server.
 * @property username The username to connect to the proxy server.
 */
public data class BackendProxy(
    public val password: String? = null,
    public val url: String,
    public val username: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.apimanagement.outputs.BackendProxy): BackendProxy = BackendProxy(
            password = javaType.password().map({ args0 -> args0 }).orElse(null),
            url = javaType.url(),
            username = javaType.username(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy