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

src.firebasehosting.v1beta1.GetReleaseArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.firebasehosting.v1beta1

final case class GetReleaseArgs private(
  channelId: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  releaseId: besom.types.Output[String],
  siteId: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy