All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.index.BotmanTransactionalEndpointArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai

final case class BotmanTransactionalEndpointArgs private(
  configId: besom.types.Output[Int],
  operationId: besom.types.Output[String],
  securityPolicyId: besom.types.Output[String],
  transactionalEndpoint: besom.types.Output[String]
)

object BotmanTransactionalEndpointArgs:
  def apply(
    configId: besom.types.Input[Int],
    operationId: besom.types.Input[String],
    securityPolicyId: besom.types.Input[String],
    transactionalEndpoint: besom.types.Input[String]
  )(using besom.types.Context): BotmanTransactionalEndpointArgs =
    new BotmanTransactionalEndpointArgs(
      configId = configId.asOutput(isSecret = false),
      operationId = operationId.asOutput(isSecret = false),
      securityPolicyId = securityPolicyId.asOutput(isSecret = false),
      transactionalEndpoint = transactionalEndpoint.asOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[BotmanTransactionalEndpointArgs] =
    besom.internal.Encoder.derived[BotmanTransactionalEndpointArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[BotmanTransactionalEndpointArgs] =
    besom.internal.ArgsEncoder.derived[BotmanTransactionalEndpointArgs]






© 2015 - 2024 Weber Informatics LLC | Privacy Policy