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

src.gkeonprem.v1.GetVmwareNodePoolArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.gkeonprem.v1

final case class GetVmwareNodePoolArgs private(
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  view: besom.types.Output[scala.Option[String]],
  vmwareClusterId: besom.types.Output[String],
  vmwareNodePoolId: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy