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