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

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

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

final case class GetCloudwrapperCapacitiesCapacityArgs private(
  approved: besom.types.Output[besom.api.akamai.inputs.GetCloudwrapperCapacitiesCapacityApprovedArgs],
  assigned: besom.types.Output[besom.api.akamai.inputs.GetCloudwrapperCapacitiesCapacityAssignedArgs],
  contractId: besom.types.Output[String],
  locationId: besom.types.Output[Int],
  locationName: besom.types.Output[String],
  `type`: besom.types.Output[String],
  unassigned: besom.types.Output[besom.api.akamai.inputs.GetCloudwrapperCapacitiesCapacityUnassignedArgs]
)

object GetCloudwrapperCapacitiesCapacityArgs:
  def apply(
    approved: besom.types.Input[besom.api.akamai.inputs.GetCloudwrapperCapacitiesCapacityApprovedArgs],
    assigned: besom.types.Input[besom.api.akamai.inputs.GetCloudwrapperCapacitiesCapacityAssignedArgs],
    contractId: besom.types.Input[String],
    locationId: besom.types.Input[Int],
    locationName: besom.types.Input[String],
    `type`: besom.types.Input[String],
    unassigned: besom.types.Input[besom.api.akamai.inputs.GetCloudwrapperCapacitiesCapacityUnassignedArgs]
  )(using besom.types.Context): GetCloudwrapperCapacitiesCapacityArgs =
    new GetCloudwrapperCapacitiesCapacityArgs(
      approved = approved.asOutput(isSecret = false),
      assigned = assigned.asOutput(isSecret = false),
      contractId = contractId.asOutput(isSecret = false),
      locationId = locationId.asOutput(isSecret = false),
      locationName = locationName.asOutput(isSecret = false),
      `type` = `type`.asOutput(isSecret = false),
      unassigned = unassigned.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy