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

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

The newest version!
package besom.api.googlenative.apigee.v1

final case class EndpointAttachmentArgs private(
  endpointAttachmentId: besom.types.Output[scala.Option[String]],
  location: besom.types.Output[scala.Option[String]],
  name: besom.types.Output[scala.Option[String]],
  organizationId: besom.types.Output[String],
  serviceAttachment: besom.types.Output[scala.Option[String]]
)

object EndpointAttachmentArgs:
  def apply(
    endpointAttachmentId: besom.types.Input.Optional[String] = scala.None,
    location: besom.types.Input.Optional[String] = scala.None,
    name: besom.types.Input.Optional[String] = scala.None,
    organizationId: besom.types.Input[String],
    serviceAttachment: besom.types.Input.Optional[String] = scala.None
  )(using besom.types.Context): EndpointAttachmentArgs =
    new EndpointAttachmentArgs(
      endpointAttachmentId = endpointAttachmentId.asOptionOutput(isSecret = false),
      location = location.asOptionOutput(isSecret = false),
      name = name.asOptionOutput(isSecret = false),
      organizationId = organizationId.asOutput(isSecret = false),
      serviceAttachment = serviceAttachment.asOptionOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy