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