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

com.pulumi.gitlab.kotlin.outputs.GetClusterAgentResult.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: 8.4.2.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gitlab.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 * A collection of values returned by getClusterAgent.
 * @property agentId The ID of the agent.
 * @property createdAt The ISO8601 datetime when the agent was created.
 * @property createdByUserId The ID of the user who created the agent.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property name The Name of the agent.
 * @property project ID or full path of the project maintained by the authenticated user.
 */
public data class GetClusterAgentResult(
    public val agentId: Int,
    public val createdAt: String,
    public val createdByUserId: Int,
    public val id: String,
    public val name: String,
    public val project: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gitlab.outputs.GetClusterAgentResult): GetClusterAgentResult = GetClusterAgentResult(
            agentId = javaType.agentId(),
            createdAt = javaType.createdAt(),
            createdByUserId = javaType.createdByUserId(),
            id = javaType.id(),
            name = javaType.name(),
            project = javaType.project(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy