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

src.healthcare.v1.GetUserDataMappingArgs.scala Maven / Gradle / Ivy

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

final case class GetUserDataMappingArgs private(
  consentStoreId: besom.types.Output[String],
  datasetId: besom.types.Output[String],
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  userDataMappingId: besom.types.Output[String]
)

object GetUserDataMappingArgs:
  def apply(
    consentStoreId: besom.types.Input[String],
    datasetId: besom.types.Input[String],
    location: besom.types.Input[String],
    project: besom.types.Input.Optional[String] = scala.None,
    userDataMappingId: besom.types.Input[String]
  )(using besom.types.Context): GetUserDataMappingArgs =
    new GetUserDataMappingArgs(
      consentStoreId = consentStoreId.asOutput(isSecret = false),
      datasetId = datasetId.asOutput(isSecret = false),
      location = location.asOutput(isSecret = false),
      project = project.asOptionOutput(isSecret = false),
      userDataMappingId = userDataMappingId.asOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy