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

src.container.v1beta1.GetServerConfigArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.container.v1beta1

final case class GetServerConfigArgs private(
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  projectId: besom.types.Output[String],
  zone: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy