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

com.pulumi.alicloud.cen.kotlin.outputs.GetTransitRouterPeerAttachmentsResult.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: 3.62.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.alicloud.cen.kotlin.outputs

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

/**
 * A collection of values returned by getTransitRouterPeerAttachments.
 * @property attachments
 * @property cenId
 * @property id The provider-assigned unique ID for this managed resource.
 * @property ids A list of CEN Transit Router peer attachments IDs.
 * @property nameRegex
 * @property names A list of CEN Transit Router peer attachments names.
 * @property outputFile
 * @property status The status of the transit router attachment.
 * @property transitRouterAttachmentId ID of the transit router attachment.
 * @property transitRouterId ID of the transit router.
 */
public data class GetTransitRouterPeerAttachmentsResult(
    public val attachments: List,
    public val cenId: String,
    public val id: String,
    public val ids: List,
    public val nameRegex: String? = null,
    public val names: List,
    public val outputFile: String? = null,
    public val status: String? = null,
    public val transitRouterAttachmentId: String? = null,
    public val transitRouterId: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.alicloud.cen.outputs.GetTransitRouterPeerAttachmentsResult): GetTransitRouterPeerAttachmentsResult = GetTransitRouterPeerAttachmentsResult(
            attachments = javaType.attachments().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.alicloud.cen.kotlin.outputs.GetTransitRouterPeerAttachmentsAttachment.Companion.toKotlin(args0)
                })
            }),
            cenId = javaType.cenId(),
            id = javaType.id(),
            ids = javaType.ids().map({ args0 -> args0 }),
            nameRegex = javaType.nameRegex().map({ args0 -> args0 }).orElse(null),
            names = javaType.names().map({ args0 -> args0 }),
            outputFile = javaType.outputFile().map({ args0 -> args0 }).orElse(null),
            status = javaType.status().map({ args0 -> args0 }).orElse(null),
            transitRouterAttachmentId = javaType.transitRouterAttachmentId().map({ args0 ->
                args0
            }).orElse(null),
            transitRouterId = javaType.transitRouterId().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy