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

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

The newest version!
package besom.api.akamai

final case class GetEdgekvGroupsArgs private(
  namespaceName: besom.types.Output[String],
  network: besom.types.Output[String]
)

object GetEdgekvGroupsArgs:
  def apply(
    namespaceName: besom.types.Input[String],
    network: besom.types.Input[String]
  )(using besom.types.Context): GetEdgekvGroupsArgs =
    new GetEdgekvGroupsArgs(
      namespaceName = namespaceName.asOutput(isSecret = false),
      network = network.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy