
src.biglake.v1.GetTableArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.biglake.v1
final case class GetTableArgs private(
catalogId: besom.types.Output[String],
databaseId: besom.types.Output[String],
location: besom.types.Output[String],
project: besom.types.Output[scala.Option[String]],
tableId: besom.types.Output[String]
)
object GetTableArgs:
def apply(
catalogId: besom.types.Input[String],
databaseId: besom.types.Input[String],
location: besom.types.Input[String],
project: besom.types.Input.Optional[String] = scala.None,
tableId: besom.types.Input[String]
)(using besom.types.Context): GetTableArgs =
new GetTableArgs(
catalogId = catalogId.asOutput(isSecret = false),
databaseId = databaseId.asOutput(isSecret = false),
location = location.asOutput(isSecret = false),
project = project.asOptionOutput(isSecret = false),
tableId = tableId.asOutput(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