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