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

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

There is a newer version: 0.32.0-core.0.4
Show newest version
package besom.api.googlenative.apigee.v1

final case class EnvgroupArgs private(
  hostnames: besom.types.Output[scala.collection.immutable.List[String]],
  name: besom.types.Output[scala.Option[String]],
  organizationId: besom.types.Output[String]
)

object EnvgroupArgs:
  def apply(
    hostnames: besom.types.Input[scala.collection.immutable.List[besom.types.Input[String]]],
    name: besom.types.Input.Optional[String] = scala.None,
    organizationId: besom.types.Input[String]
  )(using besom.types.Context): EnvgroupArgs =
    new EnvgroupArgs(
      hostnames = hostnames.asOutput(isSecret = false),
      name = name.asOptionOutput(isSecret = false),
      organizationId = organizationId.asOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy