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

src.healthcare.v1beta1.Consent.scala Maven / Gradle / Ivy

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

final case class Consent private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  consentArtifact: besom.types.Output[String],
  consentStoreId: besom.types.Output[String],
  datasetId: besom.types.Output[String],
  expireTime: besom.types.Output[String],
  location: besom.types.Output[String],
  metadata: besom.types.Output[scala.Predef.Map[String, String]],
  name: besom.types.Output[String],
  policies: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.healthcare.v1beta1.outputs.GoogleCloudHealthcareV1beta1ConsentPolicyResponse]],
  project: besom.types.Output[String],
  revisionCreateTime: besom.types.Output[String],
  revisionId: besom.types.Output[String],
  state: besom.types.Output[String],
  ttl: besom.types.Output[String],
  userId: besom.types.Output[String]
) extends besom.CustomResource

object Consent extends besom.ResourceCompanion[Consent]:
  /** Resource constructor for Consent. 
    * 
    * @param name [[besom.util.NonEmptyString]] The unique (stack-wise) name of the resource in Pulumi state (not on provider's side).
    *        NonEmptyString is inferred automatically from non-empty string literals, even when interpolated. If you encounter any
    *        issues with this, please try using `: NonEmptyString` type annotation. If you need to convert a dynamically generated
    *        string to NonEmptyString, use `NonEmptyString.apply` method - `NonEmptyString(str): Option[NonEmptyString]`.
    *
    * @param args [[ConsentArgs]] The configuration to use to create this resource. 
    *
    * @param opts [[besom.CustomResourceOptions]] Resource options to use for this resource. 
    *        Defaults to empty options. If you need to set some options, use [[besom.opts]] function to create them, for example:
    *  
    *        {{{
    *        val res = Consent(
    *          "my-resource",
    *          ConsentArgs(...), // your args
    *          opts(provider = myProvider)
    *        )
    *        }}}
    */
  def apply(using ctx: besom.types.Context)(
    name: besom.util.NonEmptyString,
    args: ConsentArgs,
    opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
  ): besom.types.Output[Consent] =
    ctx.readOrRegisterResource[Consent, ConsentArgs]("google-native:healthcare/v1beta1:Consent", name, args, opts(using besom.ResourceOptsVariant.Custom))

  private[besom] def typeToken: besom.types.ResourceType = "google-native:healthcare/v1beta1:Consent"

  given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[Consent] =
    besom.internal.ResourceDecoder.derived[Consent]

  given decoder(using besom.types.Context): besom.types.Decoder[Consent] =
    besom.internal.Decoder.customResourceDecoder[Consent]


  given outputOps: {} with
    extension(output: besom.types.Output[Consent])
      def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
      def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
      def consentArtifact : besom.types.Output[String] = output.flatMap(_.consentArtifact)
      def consentStoreId : besom.types.Output[String] = output.flatMap(_.consentStoreId)
      def datasetId : besom.types.Output[String] = output.flatMap(_.datasetId)
      def expireTime : besom.types.Output[String] = output.flatMap(_.expireTime)
      def location : besom.types.Output[String] = output.flatMap(_.location)
      def metadata : besom.types.Output[scala.Predef.Map[String, String]] = output.flatMap(_.metadata)
      def name : besom.types.Output[String] = output.flatMap(_.name)
      def policies : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.healthcare.v1beta1.outputs.GoogleCloudHealthcareV1beta1ConsentPolicyResponse]] = output.flatMap(_.policies)
      def project : besom.types.Output[String] = output.flatMap(_.project)
      def revisionCreateTime : besom.types.Output[String] = output.flatMap(_.revisionCreateTime)
      def revisionId : besom.types.Output[String] = output.flatMap(_.revisionId)
      def state : besom.types.Output[String] = output.flatMap(_.state)
      def ttl : besom.types.Output[String] = output.flatMap(_.ttl)
      def userId : besom.types.Output[String] = output.flatMap(_.userId)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy