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

com.pulumi.azure.domainservices.kotlin.outputs.GetServiceReplicaSet.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.domainservices.kotlin.outputs

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

/**
 *
 * @property domainControllerIpAddresses A list of subnet IP addresses for the domain controllers in the replica set, typically two.
 * @property externalAccessIpAddress The publicly routable IP address for the domain controllers in the replica set.
 * @property id The ID of the Domain Service.
 * @property location The Azure location in which the replica set resides.
 * @property serviceStatus The current service status for the replica set.
 * @property subnetId The ID of the subnet in which the replica set resides.
 */
public data class GetServiceReplicaSet(
    public val domainControllerIpAddresses: List,
    public val externalAccessIpAddress: String,
    public val id: String,
    public val location: String,
    public val serviceStatus: String,
    public val subnetId: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.domainservices.outputs.GetServiceReplicaSet): GetServiceReplicaSet = GetServiceReplicaSet(
            domainControllerIpAddresses = javaType.domainControllerIpAddresses().map({ args0 -> args0 }),
            externalAccessIpAddress = javaType.externalAccessIpAddress(),
            id = javaType.id(),
            location = javaType.location(),
            serviceStatus = javaType.serviceStatus(),
            subnetId = javaType.subnetId(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy