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

src.compute.beta.GetBackendServiceArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.compute.beta

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy