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

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

The newest version!
package besom.api.akamai

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

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

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy