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