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

src.apigee.v1.EntryArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.apigee.v1

final case class EntryArgs private(
  apiId: besom.types.Output[String],
  keyvaluemapId: besom.types.Output[String],
  name: besom.types.Output[scala.Option[String]],
  organizationId: besom.types.Output[String],
  value: besom.types.Output[String]
)

object EntryArgs:
  def apply(
    apiId: besom.types.Input[String],
    keyvaluemapId: besom.types.Input[String],
    name: besom.types.Input.Optional[String] = scala.None,
    organizationId: besom.types.Input[String],
    value: besom.types.Input[String]
  )(using besom.types.Context): EntryArgs =
    new EntryArgs(
      apiId = apiId.asOutput(isSecret = false),
      keyvaluemapId = keyvaluemapId.asOutput(isSecret = false),
      name = name.asOptionOutput(isSecret = false),
      organizationId = organizationId.asOutput(isSecret = false),
      value = value.asOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy