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