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

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

The newest version!
package besom.api.akamai

final case class GetIamStatesArgs private(
  country: besom.types.Output[String]
)

object GetIamStatesArgs:
  def apply(
    country: besom.types.Input[String]
  )(using besom.types.Context): GetIamStatesArgs =
    new GetIamStatesArgs(
      country = country.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy