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

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

The newest version!
package besom.api.akamai

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

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

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy