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

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

package besom.api.googlenative.apigee.v1

final case class EnvironmentEntryArgs private(
  environmentId: 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 EnvironmentEntryArgs:
  def apply(
    environmentId: 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): EnvironmentEntryArgs =
    new EnvironmentEntryArgs(
      environmentId = environmentId.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[EnvironmentEntryArgs] =
    besom.internal.Encoder.derived[EnvironmentEntryArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[EnvironmentEntryArgs] =
    besom.internal.ArgsEncoder.derived[EnvironmentEntryArgs]






© 2015 - 2025 Weber Informatics LLC | Privacy Policy