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

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

The newest version!
package besom.api.akamai

final case class GetAppSecHostnameCoverageMatchTargetsArgs private(
  configId: besom.types.Output[Int],
  hostname: besom.types.Output[String]
)

object GetAppSecHostnameCoverageMatchTargetsArgs:
  def apply(
    configId: besom.types.Input[Int],
    hostname: besom.types.Input[String]
  )(using besom.types.Context): GetAppSecHostnameCoverageMatchTargetsArgs =
    new GetAppSecHostnameCoverageMatchTargetsArgs(
      configId = configId.asOutput(isSecret = false),
      hostname = hostname.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy