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