
src.compute.v1.GetLicenseArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.compute.v1
final case class GetLicenseArgs private(
license: besom.types.Output[String],
project: besom.types.Output[scala.Option[String]]
)
object GetLicenseArgs:
def apply(
license: besom.types.Input[String],
project: besom.types.Input.Optional[String] = scala.None
)(using besom.types.Context): GetLicenseArgs =
new GetLicenseArgs(
license = license.asOutput(isSecret = false),
project = project.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetLicenseArgs] =
besom.internal.Encoder.derived[GetLicenseArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetLicenseArgs] =
besom.internal.ArgsEncoder.derived[GetLicenseArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy