src.index.inputs.EdgeKvInitialDataArgs.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai.inputs
final case class EdgeKvInitialDataArgs private(
group: besom.types.Output[scala.Option[String]],
key: besom.types.Output[String],
value: besom.types.Output[String]
)
object EdgeKvInitialDataArgs:
def apply(
group: besom.types.Input.Optional[String] = scala.None,
key: besom.types.Input[String],
value: besom.types.Input[String]
)(using besom.types.Context): EdgeKvInitialDataArgs =
new EdgeKvInitialDataArgs(
group = group.asOptionOutput(isSecret = false),
key = key.asOutput(isSecret = false),
value = value.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[EdgeKvInitialDataArgs] =
besom.internal.Encoder.derived[EdgeKvInitialDataArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[EdgeKvInitialDataArgs] =
besom.internal.ArgsEncoder.derived[EdgeKvInitialDataArgs]