All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.cloudidentity.v1.GetDeviceArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.cloudidentity.v1

final case class GetDeviceArgs private(
  customer: besom.types.Output[scala.Option[String]],
  deviceId: besom.types.Output[String]
)

object GetDeviceArgs:
  def apply(
    customer: besom.types.Input.Optional[String] = scala.None,
    deviceId: besom.types.Input[String]
  )(using besom.types.Context): GetDeviceArgs =
    new GetDeviceArgs(
      customer = customer.asOptionOutput(isSecret = false),
      deviceId = deviceId.asOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[GetDeviceArgs] =
    besom.internal.Encoder.derived[GetDeviceArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetDeviceArgs] =
    besom.internal.ArgsEncoder.derived[GetDeviceArgs]






© 2015 - 2025 Weber Informatics LLC | Privacy Policy