com.pulumi.gcp.monitoring.kotlin.outputs.GetUptimeCheckIPsUptimeCheckIp.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.monitoring.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property ipAddress The IP address from which the Uptime check originates. This is a fully specified IP address
* (not an IP address range). Most IP addresses, as of this publication, are in IPv4 format; however, one should not
* rely on the IP addresses being in IPv4 format indefinitely, and should support interpreting this field in either
* IPv4 or IPv6 format.
* @property location A more specific location within the region that typically encodes a particular city/town/metro
* (and its containing state/province or country) within the broader umbrella region category.
* @property region A broad region category in which the IP address is located.
*/
public data class GetUptimeCheckIPsUptimeCheckIp(
public val ipAddress: String,
public val location: String,
public val region: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.monitoring.outputs.GetUptimeCheckIPsUptimeCheckIp): GetUptimeCheckIPsUptimeCheckIp = GetUptimeCheckIPsUptimeCheckIp(
ipAddress = javaType.ipAddress(),
location = javaType.location(),
region = javaType.region(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy