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

src.osconfig.v1.GetPatchDeploymentArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.osconfig.v1

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy