ConnectivityArgs

data class ConnectivityArgs(val port: Output<Int>? = null, val protocol: Output<Either<String, Protocol>>? = null, val source: Output<SourceOrTargetArgs>? = null, val target: Output<SourceOrTargetArgs>? = null) : ConvertibleToJava<ConnectivityArgs>

Details about connectivity issue. Applicable when root resource causing the issue is not identified. For example, when a VM is impacted due to a network issue, the impacted resource could be VM or the network. In such cases, the connectivity field will have the details about both VM and network.

Constructors

Link copied to clipboard
constructor(port: Output<Int>? = null, protocol: Output<Either<String, Protocol>>? = null, source: Output<SourceOrTargetArgs>? = null, target: Output<SourceOrTargetArgs>? = null)

Properties

Link copied to clipboard
val port: Output<Int>? = null

Port number for the connection

Link copied to clipboard
val protocol: Output<Either<String, Protocol>>? = null

Protocol used for the connection

Link copied to clipboard
val source: Output<SourceOrTargetArgs>? = null

Source from which the connection was attempted

Link copied to clipboard
val target: Output<SourceOrTargetArgs>? = null

target which connection was attempted

Functions

Link copied to clipboard
open override fun toJava(): ConnectivityArgs