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