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

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

The newest version!
package besom.api.akamai

final case class GetBotmanTransactionalEndpointArgs private(
  configId: besom.types.Output[Int],
  operationId: besom.types.Output[scala.Option[String]],
  securityPolicyId: besom.types.Output[String]
)

object GetBotmanTransactionalEndpointArgs:
  def apply(
    configId: besom.types.Input[Int],
    operationId: besom.types.Input.Optional[String] = scala.None,
    securityPolicyId: besom.types.Input[String]
  )(using besom.types.Context): GetBotmanTransactionalEndpointArgs =
    new GetBotmanTransactionalEndpointArgs(
      configId = configId.asOutput(isSecret = false),
      operationId = operationId.asOptionOutput(isSecret = false),
      securityPolicyId = securityPolicyId.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy