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

src.apigateway.v1.GetGatewayArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.apigateway.v1

final case class GetGatewayArgs private(
  gatewayId: besom.types.Output[String],
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]]
)

object GetGatewayArgs:
  def apply(
    gatewayId: besom.types.Input[String],
    location: besom.types.Input[String],
    project: besom.types.Input.Optional[String] = scala.None
  )(using besom.types.Context): GetGatewayArgs =
    new GetGatewayArgs(
      gatewayId = gatewayId.asOutput(isSecret = false),
      location = location.asOutput(isSecret = false),
      project = project.asOptionOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy