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