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

src.recaptchaenterprise.v1.GetKeyArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.recaptchaenterprise.v1

final case class GetKeyArgs private(
  keyId: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy