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

src.index.inputs.CloudwrapperConfigurationLocationCapacityArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai.inputs

final case class CloudwrapperConfigurationLocationCapacityArgs private(
  unit: besom.types.Output[String],
  value: besom.types.Output[Int]
)

object CloudwrapperConfigurationLocationCapacityArgs:
  def apply(
    unit: besom.types.Input[String],
    value: besom.types.Input[Int]
  )(using besom.types.Context): CloudwrapperConfigurationLocationCapacityArgs =
    new CloudwrapperConfigurationLocationCapacityArgs(
      unit = unit.asOutput(isSecret = false),
      value = value.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy