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

src.identitytoolkit.v2.GetOauthIdpConfigArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.identitytoolkit.v2

final case class GetOauthIdpConfigArgs private(
  oauthIdpConfigId: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  tenantId: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy