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

src.compute.alpha.GetTargetHttpsProxyArgs.scala Maven / Gradle / Ivy

There is a newer version: 0.32.0-core.0.4
Show newest version
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