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