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

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

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

final case class GetPropertyIncludeParentsParentArgs private(
  id: besom.types.Output[String],
  isIncludeUsedInProductionVersion: besom.types.Output[Boolean],
  isIncludeUsedInStagingVersion: besom.types.Output[Boolean],
  name: besom.types.Output[String],
  productionVersion: besom.types.Output[String],
  stagingVersion: besom.types.Output[String]
)

object GetPropertyIncludeParentsParentArgs:
  def apply(
    id: besom.types.Input[String],
    isIncludeUsedInProductionVersion: besom.types.Input[Boolean],
    isIncludeUsedInStagingVersion: besom.types.Input[Boolean],
    name: besom.types.Input[String],
    productionVersion: besom.types.Input[String],
    stagingVersion: besom.types.Input[String]
  )(using besom.types.Context): GetPropertyIncludeParentsParentArgs =
    new GetPropertyIncludeParentsParentArgs(
      id = id.asOutput(isSecret = false),
      isIncludeUsedInProductionVersion = isIncludeUsedInProductionVersion.asOutput(isSecret = false),
      isIncludeUsedInStagingVersion = isIncludeUsedInStagingVersion.asOutput(isSecret = false),
      name = name.asOutput(isSecret = false),
      productionVersion = productionVersion.asOutput(isSecret = false),
      stagingVersion = stagingVersion.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy