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