
com.pulumi.azure.signalr.kotlin.outputs.GetServiceResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.signalr.kotlin.outputs
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* A collection of values returned by getService.
* @property aadAuthEnabled Is aad auth enabled for this SignalR service?
* @property hostname The FQDN of the SignalR service.
* @property id The provider-assigned unique ID for this managed resource.
* @property ipAddress The publicly accessible IP of the SignalR service.
* @property localAuthEnabled Is local auth enable for this SignalR serviced?
* @property location Specifies the supported Azure location where the SignalR service exists.
* @property name
* @property primaryAccessKey The primary access key of the SignalR service.
* @property primaryConnectionString The primary connection string of the SignalR service.
* @property publicNetworkAccessEnabled Is public network access enabled for this SignalR service?
* @property publicPort The publicly accessible port of the SignalR service which is designed for browser/client use.
* @property resourceGroupName
* @property secondaryAccessKey The secondary access key of the SignalR service.
* @property secondaryConnectionString The secondary connection string of the SignalR service.
* @property serverPort The publicly accessible port of the SignalR service which is designed for customer server side use.
* @property serverlessConnectionTimeoutInSeconds The serverless connection timeout of this SignalR service.
* @property tags
* @property tlsClientCertEnabled Is tls client cert enabled for this SignalR service?
*/
public data class GetServiceResult(
public val aadAuthEnabled: Boolean,
public val hostname: String,
public val id: String,
public val ipAddress: String,
public val localAuthEnabled: Boolean,
public val location: String,
public val name: String,
public val primaryAccessKey: String,
public val primaryConnectionString: String,
public val publicNetworkAccessEnabled: Boolean,
public val publicPort: Int,
public val resourceGroupName: String,
public val secondaryAccessKey: String,
public val secondaryConnectionString: String,
public val serverPort: Int,
public val serverlessConnectionTimeoutInSeconds: Int,
public val tags: Map,
public val tlsClientCertEnabled: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.signalr.outputs.GetServiceResult):
GetServiceResult = GetServiceResult(
aadAuthEnabled = javaType.aadAuthEnabled(),
hostname = javaType.hostname(),
id = javaType.id(),
ipAddress = javaType.ipAddress(),
localAuthEnabled = javaType.localAuthEnabled(),
location = javaType.location(),
name = javaType.name(),
primaryAccessKey = javaType.primaryAccessKey(),
primaryConnectionString = javaType.primaryConnectionString(),
publicNetworkAccessEnabled = javaType.publicNetworkAccessEnabled(),
publicPort = javaType.publicPort(),
resourceGroupName = javaType.resourceGroupName(),
secondaryAccessKey = javaType.secondaryAccessKey(),
secondaryConnectionString = javaType.secondaryConnectionString(),
serverPort = javaType.serverPort(),
serverlessConnectionTimeoutInSeconds = javaType.serverlessConnectionTimeoutInSeconds(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
tlsClientCertEnabled = javaType.tlsClientCertEnabled(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy