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

com.pulumi.azure.eventhub.kotlin.outputs.GetConsumeGroupResult.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.eventhub.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A collection of values returned by getConsumeGroup.
 * @property eventhubName
 * @property id The provider-assigned unique ID for this managed resource.
 * @property name
 * @property namespaceName
 * @property resourceGroupName
 * @property userMetadata Specifies the user metadata.
 */
public data class GetConsumeGroupResult(
    public val eventhubName: String,
    public val id: String,
    public val name: String,
    public val namespaceName: String,
    public val resourceGroupName: String,
    public val userMetadata: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.eventhub.outputs.GetConsumeGroupResult): GetConsumeGroupResult = GetConsumeGroupResult(
            eventhubName = javaType.eventhubName(),
            id = javaType.id(),
            name = javaType.name(),
            namespaceName = javaType.namespaceName(),
            resourceGroupName = javaType.resourceGroupName(),
            userMetadata = javaType.userMetadata(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy