![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.cloudflare.kotlin.outputs.GetInfrastructureAccessTargetsTarget.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.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