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

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

There is a newer version: 0.32.0-core.0.4
Show newest version
package besom.api.googlenative.identitytoolkit.v2

final case class OauthIdpConfigArgs private(
  clientId: besom.types.Output[scala.Option[String]],
  clientSecret: besom.types.Output[scala.Option[String]],
  displayName: besom.types.Output[scala.Option[String]],
  enabled: besom.types.Output[scala.Option[Boolean]],
  issuer: besom.types.Output[scala.Option[String]],
  name: besom.types.Output[scala.Option[String]],
  oauthIdpConfigId: besom.types.Output[scala.Option[String]],
  project: besom.types.Output[scala.Option[String]],
  responseType: besom.types.Output[scala.Option[besom.api.googlenative.identitytoolkit.v2.inputs.GoogleCloudIdentitytoolkitAdminV2OAuthResponseTypeArgs]],
  tenantId: besom.types.Output[String]
)

object OauthIdpConfigArgs:
  def apply(
    clientId: besom.types.Input.Optional[String] = scala.None,
    clientSecret: besom.types.Input.Optional[String] = scala.None,
    displayName: besom.types.Input.Optional[String] = scala.None,
    enabled: besom.types.Input.Optional[Boolean] = scala.None,
    issuer: besom.types.Input.Optional[String] = scala.None,
    name: besom.types.Input.Optional[String] = scala.None,
    oauthIdpConfigId: besom.types.Input.Optional[String] = scala.None,
    project: besom.types.Input.Optional[String] = scala.None,
    responseType: besom.types.Input.Optional[besom.api.googlenative.identitytoolkit.v2.inputs.GoogleCloudIdentitytoolkitAdminV2OAuthResponseTypeArgs] = scala.None,
    tenantId: besom.types.Input[String]
  )(using besom.types.Context): OauthIdpConfigArgs =
    new OauthIdpConfigArgs(
      clientId = clientId.asOptionOutput(isSecret = false),
      clientSecret = clientSecret.asOptionOutput(isSecret = false),
      displayName = displayName.asOptionOutput(isSecret = false),
      enabled = enabled.asOptionOutput(isSecret = false),
      issuer = issuer.asOptionOutput(isSecret = false),
      name = name.asOptionOutput(isSecret = false),
      oauthIdpConfigId = oauthIdpConfigId.asOptionOutput(isSecret = false),
      project = project.asOptionOutput(isSecret = false),
      responseType = responseType.asOptionOutput(isSecret = false),
      tenantId = tenantId.asOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy