src.index.CloudwrapperActivationArgs.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai
final case class CloudwrapperActivationArgs private(
configId: besom.types.Output[Int],
revision: besom.types.Output[String],
timeouts: besom.types.Output[scala.Option[besom.api.akamai.inputs.CloudwrapperActivationTimeoutsArgs]]
)
object CloudwrapperActivationArgs:
def apply(
configId: besom.types.Input[Int],
revision: besom.types.Input[String],
timeouts: besom.types.Input.Optional[besom.api.akamai.inputs.CloudwrapperActivationTimeoutsArgs] = scala.None
)(using besom.types.Context): CloudwrapperActivationArgs =
new CloudwrapperActivationArgs(
configId = configId.asOutput(isSecret = false),
revision = revision.asOutput(isSecret = false),
timeouts = timeouts.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[CloudwrapperActivationArgs] =
besom.internal.Encoder.derived[CloudwrapperActivationArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[CloudwrapperActivationArgs] =
besom.internal.ArgsEncoder.derived[CloudwrapperActivationArgs]