
src.iap.v1.IdentityAwareProxyClientArgs.scala Maven / Gradle / Ivy
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