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

src.vmwareengine.v1.GetPrivateConnectionArgs.scala Maven / Gradle / Ivy

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

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy