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

src.apigateway.v1beta.GetConfigArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.apigateway.v1beta

final case class GetConfigArgs private(
  apiId: besom.types.Output[String],
  configId: besom.types.Output[String],
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  view: besom.types.Output[scala.Option[String]]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy