![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.apimanagement.kotlin.outputs.GetGroupResult.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.apimanagement.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getGroup.
* @property apiManagementName
* @property description The description of this API Management Group.
* @property displayName The display name of this API Management Group.
* @property externalId The identifier of the external Group.
* @property id The provider-assigned unique ID for this managed resource.
* @property name
* @property resourceGroupName
* @property type The type of this API Management Group, such as `custom` or `external`.
*/
public data class GetGroupResult(
public val apiManagementName: String,
public val description: String,
public val displayName: String,
public val externalId: String,
public val id: String,
public val name: String,
public val resourceGroupName: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.apimanagement.outputs.GetGroupResult): GetGroupResult = GetGroupResult(
apiManagementName = javaType.apiManagementName(),
description = javaType.description(),
displayName = javaType.displayName(),
externalId = javaType.externalId(),
id = javaType.id(),
name = javaType.name(),
resourceGroupName = javaType.resourceGroupName(),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy