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

src.index.GetCpsDeploymentsArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai

final case class GetCpsDeploymentsArgs private(
  enrollmentId: besom.types.Output[Int]
)

object GetCpsDeploymentsArgs:
  def apply(
    enrollmentId: besom.types.Input[Int]
  )(using besom.types.Context): GetCpsDeploymentsArgs =
    new GetCpsDeploymentsArgs(
      enrollmentId = enrollmentId.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy