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

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy