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