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