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

src.index.IamBlockedUserPropertiesArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai

final case class IamBlockedUserPropertiesArgs private(
  blockedProperties: besom.types.Output[scala.collection.immutable.List[Int]],
  groupId: besom.types.Output[Int],
  identityId: besom.types.Output[String]
)

object IamBlockedUserPropertiesArgs:
  def apply(
    blockedProperties: besom.types.Input[scala.collection.immutable.List[besom.types.Input[Int]]],
    groupId: besom.types.Input[Int],
    identityId: besom.types.Input[String]
  )(using besom.types.Context): IamBlockedUserPropertiesArgs =
    new IamBlockedUserPropertiesArgs(
      blockedProperties = blockedProperties.asOutput(isSecret = false),
      groupId = groupId.asOutput(isSecret = false),
      identityId = identityId.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy