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

src.apigee.v1.EnvgroupAttachmentArgs.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 EnvgroupAttachmentArgs private(
  envgroupId: besom.types.Output[String],
  environment: besom.types.Output[String],
  name: besom.types.Output[scala.Option[String]],
  organizationId: besom.types.Output[String]
)

object EnvgroupAttachmentArgs:
  def apply(
    envgroupId: besom.types.Input[String],
    environment: besom.types.Input[String],
    name: besom.types.Input.Optional[String] = scala.None,
    organizationId: besom.types.Input[String]
  )(using besom.types.Context): EnvgroupAttachmentArgs =
    new EnvgroupAttachmentArgs(
      envgroupId = envgroupId.asOutput(isSecret = false),
      environment = environment.asOutput(isSecret = false),
      name = name.asOptionOutput(isSecret = false),
      organizationId = organizationId.asOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy