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

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

package besom.api.googlenative.compute.alpha

final case class GetTargetSslProxyArgs private(
  project: besom.types.Output[scala.Option[String]],
  targetSslProxy: besom.types.Output[String]
)

object GetTargetSslProxyArgs:
  def apply(
    project: besom.types.Input.Optional[String] = scala.None,
    targetSslProxy: besom.types.Input[String]
  )(using besom.types.Context): GetTargetSslProxyArgs =
    new GetTargetSslProxyArgs(
      project = project.asOptionOutput(isSecret = false),
      targetSslProxy = targetSslProxy.asOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[GetTargetSslProxyArgs] =
    besom.internal.Encoder.derived[GetTargetSslProxyArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetTargetSslProxyArgs] =
    besom.internal.ArgsEncoder.derived[GetTargetSslProxyArgs]






© 2015 - 2025 Weber Informatics LLC | Privacy Policy