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

com.pulumi.azurenative.servicefabric.kotlin.outputs.ServiceEndpointResponse.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.servicefabric.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * The service endpoint properties.
 * @property locations A list of locations.
 * @property service The type of the endpoint service.
 */
public data class ServiceEndpointResponse(
    public val locations: List? = null,
    public val service: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.servicefabric.outputs.ServiceEndpointResponse): ServiceEndpointResponse = ServiceEndpointResponse(
            locations = javaType.locations().map({ args0 -> args0 }),
            service = javaType.service(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy