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

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

package besom.api.googlenative.dataplex.v1

final case class GetContentitemArgs private(
  contentitemId: 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]]
)

object GetContentitemArgs:
  def apply(
    contentitemId: 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
  )(using besom.types.Context): GetContentitemArgs =
    new GetContentitemArgs(
      contentitemId = contentitemId.asOutput(isSecret = false),
      lakeId = lakeId.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[GetContentitemArgs] =
    besom.internal.Encoder.derived[GetContentitemArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetContentitemArgs] =
    besom.internal.ArgsEncoder.derived[GetContentitemArgs]






© 2015 - 2025 Weber Informatics LLC | Privacy Policy