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

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

There is a newer version: 0.32.0-core.0.4
Show newest version
package besom.api.googlenative.dataplex.v1

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

object GetEntityArgs:
  def apply(
    entityId: besom.types.Input[String],
    lakeId: 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,
    zone: besom.types.Input[String]
  )(using besom.types.Context): GetEntityArgs =
    new GetEntityArgs(
      entityId = entityId.asOutput(isSecret = false),
      lakeId = lakeId.asOutput(isSecret = false),
      location = location.asOutput(isSecret = false),
      project = project.asOptionOutput(isSecret = false),
      view = view.asOptionOutput(isSecret = false),
      zone = zone.asOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy