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