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

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

package com.pulumi.cloudflare.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property accountId The account identifier to target for the resource.
 * @property createdAt The date and time at which the target was created.
 * @property hostname A non-unique field that refers to a target.
 * @property id The identifier of this resource. This is target's unique identifier.
 * @property ip The IPv4/IPv6 address that identifies where to reach a target.
 * @property modifiedAt The date and time at which the target was last modified.
 */
public data class GetInfrastructureAccessTargetsTarget(
    public val accountId: String,
    public val createdAt: String,
    public val hostname: String,
    public val id: String,
    public val ip: GetInfrastructureAccessTargetsTargetIp,
    public val modifiedAt: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.GetInfrastructureAccessTargetsTarget): GetInfrastructureAccessTargetsTarget = GetInfrastructureAccessTargetsTarget(
            accountId = javaType.accountId(),
            createdAt = javaType.createdAt(),
            hostname = javaType.hostname(),
            id = javaType.id(),
            ip = javaType.ip().let({ args0 ->
                com.pulumi.cloudflare.kotlin.outputs.GetInfrastructureAccessTargetsTargetIp.Companion.toKotlin(args0)
            }),
            modifiedAt = javaType.modifiedAt(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy