com.pulumi.azure.iot.kotlin.outputs.GetDpsSharedAccessPolicyResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.iot.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getDpsSharedAccessPolicy.
* @property id The provider-assigned unique ID for this managed resource.
* @property iothubDpsName
* @property name
* @property primaryConnectionString The primary connection string of the Shared Access Policy.
* @property primaryKey The primary key used to create the authentication token.
* @property resourceGroupName
* @property secondaryConnectionString The secondary connection string of the Shared Access Policy.
* @property secondaryKey The secondary key used to create the authentication token.
*/
public data class GetDpsSharedAccessPolicyResult(
public val id: String,
public val iothubDpsName: String,
public val name: String,
public val primaryConnectionString: String,
public val primaryKey: String,
public val resourceGroupName: String,
public val secondaryConnectionString: String,
public val secondaryKey: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.iot.outputs.GetDpsSharedAccessPolicyResult):
GetDpsSharedAccessPolicyResult = GetDpsSharedAccessPolicyResult(
id = javaType.id(),
iothubDpsName = javaType.iothubDpsName(),
name = javaType.name(),
primaryConnectionString = javaType.primaryConnectionString(),
primaryKey = javaType.primaryKey(),
resourceGroupName = javaType.resourceGroupName(),
secondaryConnectionString = javaType.secondaryConnectionString(),
secondaryKey = javaType.secondaryKey(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy