
src.compute.alpha.RegionTargetHttpProxyArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.compute.alpha
final case class RegionTargetHttpProxyArgs private(
description: besom.types.Output[scala.Option[String]],
httpFilters: besom.types.Output[scala.Option[scala.collection.immutable.List[String]]],
httpKeepAliveTimeoutSec: besom.types.Output[scala.Option[Int]],
name: besom.types.Output[scala.Option[String]],
project: besom.types.Output[scala.Option[String]],
proxyBind: besom.types.Output[scala.Option[Boolean]],
region: besom.types.Output[String],
requestId: besom.types.Output[scala.Option[String]],
urlMap: besom.types.Output[scala.Option[String]]
)
object RegionTargetHttpProxyArgs:
def apply(
description: besom.types.Input.Optional[String] = scala.None,
httpFilters: besom.types.Input.Optional[scala.collection.immutable.List[besom.types.Input[String]]] = scala.None,
httpKeepAliveTimeoutSec: besom.types.Input.Optional[Int] = scala.None,
name: besom.types.Input.Optional[String] = scala.None,
project: besom.types.Input.Optional[String] = scala.None,
proxyBind: besom.types.Input.Optional[Boolean] = scala.None,
region: besom.types.Input[String],
requestId: besom.types.Input.Optional[String] = scala.None,
urlMap: besom.types.Input.Optional[String] = scala.None
)(using besom.types.Context): RegionTargetHttpProxyArgs =
new RegionTargetHttpProxyArgs(
description = description.asOptionOutput(isSecret = false),
httpFilters = httpFilters.asOptionOutput(isSecret = false),
httpKeepAliveTimeoutSec = httpKeepAliveTimeoutSec.asOptionOutput(isSecret = false),
name = name.asOptionOutput(isSecret = false),
project = project.asOptionOutput(isSecret = false),
proxyBind = proxyBind.asOptionOutput(isSecret = false),
region = region.asOutput(isSecret = false),
requestId = requestId.asOptionOutput(isSecret = false),
urlMap = urlMap.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[RegionTargetHttpProxyArgs] =
besom.internal.Encoder.derived[RegionTargetHttpProxyArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[RegionTargetHttpProxyArgs] =
besom.internal.ArgsEncoder.derived[RegionTargetHttpProxyArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy