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

src.index.inputs.GetImagingPolicyImagePolicyVariableArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai.inputs

final case class GetImagingPolicyImagePolicyVariableArgs private(
  defaultValue: besom.types.Output[String],
  enumOptions: besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.akamai.inputs.GetImagingPolicyImagePolicyVariableEnumOptionArgs]]],
  name: besom.types.Output[String],
  postfix: besom.types.Output[scala.Option[String]],
  prefix: besom.types.Output[scala.Option[String]],
  `type`: besom.types.Output[String]
)

object GetImagingPolicyImagePolicyVariableArgs:
  def apply(
    defaultValue: besom.types.Input[String],
    enumOptions: besom.types.Input.Optional[scala.collection.immutable.List[besom.types.Input[besom.api.akamai.inputs.GetImagingPolicyImagePolicyVariableEnumOptionArgs]]] = scala.None,
    name: besom.types.Input[String],
    postfix: besom.types.Input.Optional[String] = scala.None,
    prefix: besom.types.Input.Optional[String] = scala.None,
    `type`: besom.types.Input[String]
  )(using besom.types.Context): GetImagingPolicyImagePolicyVariableArgs =
    new GetImagingPolicyImagePolicyVariableArgs(
      defaultValue = defaultValue.asOutput(isSecret = false),
      enumOptions = enumOptions.asOptionOutput(isSecret = false),
      name = name.asOutput(isSecret = false),
      postfix = postfix.asOptionOutput(isSecret = false),
      prefix = prefix.asOptionOutput(isSecret = false),
      `type` = `type`.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy