
src.testing.v1.GetTestMatrixArgs.scala Maven / Gradle / Ivy
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