
src.compute.v1.GetTargetHttpProxyArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.compute.v1
final case class GetTargetHttpProxyArgs private(
project: besom.types.Output[scala.Option[String]],
targetHttpProxy: besom.types.Output[String]
)
object GetTargetHttpProxyArgs:
def apply(
project: besom.types.Input.Optional[String] = scala.None,
targetHttpProxy: besom.types.Input[String]
)(using besom.types.Context): GetTargetHttpProxyArgs =
new GetTargetHttpProxyArgs(
project = project.asOptionOutput(isSecret = false),
targetHttpProxy = targetHttpProxy.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetTargetHttpProxyArgs] =
besom.internal.Encoder.derived[GetTargetHttpProxyArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetTargetHttpProxyArgs] =
besom.internal.ArgsEncoder.derived[GetTargetHttpProxyArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy