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

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

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

final case class GetCloudletsPolicyActivationPropertyInfoArgs private(
  activatedBy: besom.types.Output[String],
  activationDate: besom.types.Output[Int],
  groupId: besom.types.Output[Int],
  name: besom.types.Output[String],
  status: besom.types.Output[String],
  version: besom.types.Output[Int]
)

object GetCloudletsPolicyActivationPropertyInfoArgs:
  def apply(
    activatedBy: besom.types.Input[String],
    activationDate: besom.types.Input[Int],
    groupId: besom.types.Input[Int],
    name: besom.types.Input[String],
    status: besom.types.Input[String],
    version: besom.types.Input[Int]
  )(using besom.types.Context): GetCloudletsPolicyActivationPropertyInfoArgs =
    new GetCloudletsPolicyActivationPropertyInfoArgs(
      activatedBy = activatedBy.asOutput(isSecret = false),
      activationDate = activationDate.asOutput(isSecret = false),
      groupId = groupId.asOutput(isSecret = false),
      name = name.asOutput(isSecret = false),
      status = status.asOutput(isSecret = false),
      version = version.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy