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

src.dataplex.v1.GetPartitionArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.dataplex.v1

final case class GetPartitionArgs private(
  entityId: besom.types.Output[String],
  lakeId: besom.types.Output[String],
  location: besom.types.Output[String],
  partitionId: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  zone: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy