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

src.eventarc.v1.GetChannelConnectionArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.eventarc.v1

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy