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

src.iap.v1.IdentityAwareProxyClientArgs.scala Maven / Gradle / Ivy

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

final case class IdentityAwareProxyClientArgs private(
  brandId: besom.types.Output[String],
  displayName: besom.types.Output[scala.Option[String]],
  project: besom.types.Output[scala.Option[String]]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy