src.index.inputs.GetCloudwrapperConfigurationLocationCapacityArgs.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai.inputs
final case class GetCloudwrapperConfigurationLocationCapacityArgs private(
unit: besom.types.Output[String],
value: besom.types.Output[Int]
)
object GetCloudwrapperConfigurationLocationCapacityArgs:
def apply(
unit: besom.types.Input[String],
value: besom.types.Input[Int]
)(using besom.types.Context): GetCloudwrapperConfigurationLocationCapacityArgs =
new GetCloudwrapperConfigurationLocationCapacityArgs(
unit = unit.asOutput(isSecret = false),
value = value.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetCloudwrapperConfigurationLocationCapacityArgs] =
besom.internal.Encoder.derived[GetCloudwrapperConfigurationLocationCapacityArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetCloudwrapperConfigurationLocationCapacityArgs] =
besom.internal.ArgsEncoder.derived[GetCloudwrapperConfigurationLocationCapacityArgs]