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

src.cloudbuild.v2.GetConnectionArgs.scala Maven / Gradle / Ivy

There is a newer version: 0.32.0-core.0.4
Show newest version
package besom.api.googlenative.cloudbuild.v2

final case class GetConnectionArgs private(
  connectionId: besom.types.Output[String],
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy