
src.blockchainnodeengine.v1.GetBlockchainNodeResult.scala Maven / Gradle / Ivy
package besom.api.googlenative.blockchainnodeengine.v1
final case class GetBlockchainNodeResult private(
blockchainType: String,
connectionInfo: besom.api.googlenative.blockchainnodeengine.v1.outputs.ConnectionInfoResponse,
createTime: String,
ethereumDetails: besom.api.googlenative.blockchainnodeengine.v1.outputs.EthereumDetailsResponse,
labels: scala.Predef.Map[String, String],
name: String,
privateServiceConnectEnabled: Boolean,
state: String,
updateTime: String
)
object GetBlockchainNodeResult :
given decoder(using besom.types.Context): besom.types.Decoder[GetBlockchainNodeResult] =
besom.internal.Decoder.derived[GetBlockchainNodeResult]
given outputOps: {} with
extension(output: besom.types.Output[GetBlockchainNodeResult])
def blockchainType : besom.types.Output[String] = output.map(_.blockchainType)
def connectionInfo : besom.types.Output[besom.api.googlenative.blockchainnodeengine.v1.outputs.ConnectionInfoResponse] = output.map(_.connectionInfo)
def createTime : besom.types.Output[String] = output.map(_.createTime)
def ethereumDetails : besom.types.Output[besom.api.googlenative.blockchainnodeengine.v1.outputs.EthereumDetailsResponse] = output.map(_.ethereumDetails)
def labels : besom.types.Output[scala.Predef.Map[String, String]] = output.map(_.labels)
def name : besom.types.Output[String] = output.map(_.name)
def privateServiceConnectEnabled : besom.types.Output[Boolean] = output.map(_.privateServiceConnectEnabled)
def state : besom.types.Output[String] = output.map(_.state)
def updateTime : besom.types.Output[String] = output.map(_.updateTime)
given optionOutputOps: {} with
extension(output: besom.types.Output[scala.Option[GetBlockchainNodeResult]])
def blockchainType : besom.types.Output[scala.Option[String]] = output.map(_.map(_.blockchainType))
def connectionInfo : besom.types.Output[scala.Option[besom.api.googlenative.blockchainnodeengine.v1.outputs.ConnectionInfoResponse]] = output.map(_.map(_.connectionInfo))
def createTime : besom.types.Output[scala.Option[String]] = output.map(_.map(_.createTime))
def ethereumDetails : besom.types.Output[scala.Option[besom.api.googlenative.blockchainnodeengine.v1.outputs.EthereumDetailsResponse]] = output.map(_.map(_.ethereumDetails))
def labels : besom.types.Output[scala.Option[scala.Predef.Map[String, String]]] = output.map(_.map(_.labels))
def name : besom.types.Output[scala.Option[String]] = output.map(_.map(_.name))
def privateServiceConnectEnabled : besom.types.Output[scala.Option[Boolean]] = output.map(_.map(_.privateServiceConnectEnabled))
def state : besom.types.Output[scala.Option[String]] = output.map(_.map(_.state))
def updateTime : besom.types.Output[scala.Option[String]] = output.map(_.map(_.updateTime))
© 2015 - 2025 Weber Informatics LLC | Privacy Policy