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

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

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

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

/**
 *
 * @property capacity Specifies the number of units associated with this API Management service.
 * @property gatewayRegionalUrl Gateway URL of the API Management service in the Region.
 * @property location The location name of the additional region among Azure Data center regions.
 * @property privateIpAddresses Private IP addresses of the API Management service in the additional location, for instances using virtual network mode.
 * @property publicIpAddressId ID of the standard SKU IPv4 Public IP. Available only for Premium SKU deployed in a virtual network.
 * @property publicIpAddresses Public Static Load Balanced IP addresses of the API Management service in the additional location. Available only for Basic, Standard and Premium SKU.
 * @property zones List of the availability zones where API Management is deployed in the additional region exists.
 */
public data class GetServiceAdditionalLocation(
    public val capacity: Int,
    public val gatewayRegionalUrl: String,
    public val location: String,
    public val privateIpAddresses: List,
    public val publicIpAddressId: String,
    public val publicIpAddresses: List,
    public val zones: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.apimanagement.outputs.GetServiceAdditionalLocation): GetServiceAdditionalLocation = GetServiceAdditionalLocation(
            capacity = javaType.capacity(),
            gatewayRegionalUrl = javaType.gatewayRegionalUrl(),
            location = javaType.location(),
            privateIpAddresses = javaType.privateIpAddresses().map({ args0 -> args0 }),
            publicIpAddressId = javaType.publicIpAddressId(),
            publicIpAddresses = javaType.publicIpAddresses().map({ args0 -> args0 }),
            zones = javaType.zones().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy