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