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

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

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

final case class GetGroupsGroupArgs private(
  contractIds: besom.types.Output[scala.collection.immutable.List[String]],
  groupId: besom.types.Output[String],
  groupName: besom.types.Output[String],
  parentGroupId: besom.types.Output[String]
)

object GetGroupsGroupArgs:
  def apply(
    contractIds: besom.types.Input[scala.collection.immutable.List[besom.types.Input[String]]],
    groupId: besom.types.Input[String],
    groupName: besom.types.Input[String],
    parentGroupId: besom.types.Input[String]
  )(using besom.types.Context): GetGroupsGroupArgs =
    new GetGroupsGroupArgs(
      contractIds = contractIds.asOutput(isSecret = false),
      groupId = groupId.asOutput(isSecret = false),
      groupName = groupName.asOutput(isSecret = false),
      parentGroupId = parentGroupId.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy