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]