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

src.testing.v1.GetTestMatrixArgs.scala Maven / Gradle / Ivy

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

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy