
src.blockchainnodeengine.v1.GetBlockchainNodeArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.blockchainnodeengine.v1
final case class GetBlockchainNodeArgs private(
blockchainNodeId: besom.types.Output[String],
location: besom.types.Output[String],
project: besom.types.Output[scala.Option[String]]
)
object GetBlockchainNodeArgs:
def apply(
blockchainNodeId: besom.types.Input[String],
location: besom.types.Input[String],
project: besom.types.Input.Optional[String] = scala.None
)(using besom.types.Context): GetBlockchainNodeArgs =
new GetBlockchainNodeArgs(
blockchainNodeId = blockchainNodeId.asOutput(isSecret = false),
location = location.asOutput(isSecret = false),
project = project.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetBlockchainNodeArgs] =
besom.internal.Encoder.derived[GetBlockchainNodeArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetBlockchainNodeArgs] =
besom.internal.ArgsEncoder.derived[GetBlockchainNodeArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy