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

src.index.GetCloudwrapperLocationArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai

final case class GetCloudwrapperLocationArgs private(
  locationName: besom.types.Output[String],
  trafficType: besom.types.Output[String]
)

object GetCloudwrapperLocationArgs:
  def apply(
    locationName: besom.types.Input[String],
    trafficType: besom.types.Input[String]
  )(using besom.types.Context): GetCloudwrapperLocationArgs =
    new GetCloudwrapperLocationArgs(
      locationName = locationName.asOutput(isSecret = false),
      trafficType = trafficType.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy