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

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

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

final case class GetCloudwrapperConfigurationsConfigurationLocationArgs private(
  capacity: besom.types.Output[besom.api.akamai.inputs.GetCloudwrapperConfigurationsConfigurationLocationCapacityArgs],
  comments: besom.types.Output[String],
  mapName: besom.types.Output[String],
  trafficTypeId: besom.types.Output[Int]
)

object GetCloudwrapperConfigurationsConfigurationLocationArgs:
  def apply(
    capacity: besom.types.Input[besom.api.akamai.inputs.GetCloudwrapperConfigurationsConfigurationLocationCapacityArgs],
    comments: besom.types.Input[String],
    mapName: besom.types.Input[String],
    trafficTypeId: besom.types.Input[Int]
  )(using besom.types.Context): GetCloudwrapperConfigurationsConfigurationLocationArgs =
    new GetCloudwrapperConfigurationsConfigurationLocationArgs(
      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[GetCloudwrapperConfigurationsConfigurationLocationArgs] =
    besom.internal.Encoder.derived[GetCloudwrapperConfigurationsConfigurationLocationArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetCloudwrapperConfigurationsConfigurationLocationArgs] =
    besom.internal.ArgsEncoder.derived[GetCloudwrapperConfigurationsConfigurationLocationArgs]






© 2015 - 2024 Weber Informatics LLC | Privacy Policy