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