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

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

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

final case class GetPropertyRulesBuilderRulesV20240212VariableArgs private(
  description: besom.types.Output[String],
  hidden: besom.types.Output[Boolean],
  name: besom.types.Output[String],
  sensitive: besom.types.Output[Boolean],
  value: besom.types.Output[String]
)

object GetPropertyRulesBuilderRulesV20240212VariableArgs:
  def apply(
    description: besom.types.Input[String],
    hidden: besom.types.Input[Boolean],
    name: besom.types.Input[String],
    sensitive: besom.types.Input[Boolean],
    value: besom.types.Input[String]
  )(using besom.types.Context): GetPropertyRulesBuilderRulesV20240212VariableArgs =
    new GetPropertyRulesBuilderRulesV20240212VariableArgs(
      description = description.asOutput(isSecret = false),
      hidden = hidden.asOutput(isSecret = false),
      name = name.asOutput(isSecret = false),
      sensitive = sensitive.asOutput(isSecret = false),
      value = value.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy