google-apis-healthcare_v1beta1 0.3.0 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 874d0251e05c116179a2de7d4d86e545e31eb851ce128a74816a3775a315710b
4
- data.tar.gz: 5c2a77ad2c37a7ed73a0100391e7ac57389c070f0caab1e5fcf0f107d5ec902b
3
+ metadata.gz: ca194d1e7220330fc7d957fa26bcd0283a326850e11ccfb4664278534d0f088d
4
+ data.tar.gz: 96921f6435eeb5978132e8a3ee0ac8f97b1459a0f7fbe4bc4a67f18d7fe31f5e
5
5
  SHA512:
6
- metadata.gz: 2816543ab74c918a0ea26a5c974385438a7f7f28b4a31e9e810755b5d528f6dc83f07a2eae4fd65e807c3b76f73619bf291c22db76f51117584912b8d62577b1
7
- data.tar.gz: 551312e4b456c413e4117ff4ffc806683813cae71846a3b90407a479d4fc4cd00740fa1a52585b17301fdf63145a65e8fc43afaaffcbfd6037297612be23a49e
6
+ metadata.gz: 6381c4be7ef01b3756e8fa7c437f7c3ab71271d7536089e16cb47c3358c7567a38eecdaef6fc261ad9118732dcb2b0b8203085c05ec40bf45702c5cf29735d9a
7
+ data.tar.gz: 4da1c06caea8d8c0cd76c5f77ca4b2bdc032bdfda6be15c70d9ab78b0e0ae31f65ce8fe58c417a42b3dd5adccaba76359afa8ce8d2e6255879c868c440bae06e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.8.0 (2021-05-21)
4
+
5
+ * Regenerated from discovery document revision 20210507
6
+ * Unspecified changes
7
+
8
+ ### v0.7.0 (2021-04-28)
9
+
10
+ * Regenerated from discovery document revision 20210414
11
+
12
+ ### v0.6.0 (2021-03-26)
13
+
14
+ * Regenerated from discovery document revision 20210317
15
+
16
+ ### v0.5.0 (2021-03-18)
17
+
18
+ * Regenerated from discovery document revision 20210301
19
+ * Regenerated using generator version 0.2.0
20
+
21
+ ### v0.4.0 (2021-03-04)
22
+
23
+ * Regenerated from discovery document revision 20210217
24
+
3
25
  ### v0.3.0 (2021-02-18)
4
26
 
5
27
  * Regenerated from discovery document revision 20210205
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1beta1'
31
31
 
32
- # View and manage your data across Google Cloud Platform services
32
+ # See, edit, configure, and delete your Google Cloud Platform data
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
34
  end
35
35
  end
@@ -24,25 +24,27 @@ module Google
24
24
 
25
25
  # Activates the latest revision of the specified Consent by committing a new
26
26
  # revision with `state` updated to `ACTIVE`. If the latest revision of the given
27
- # consent is in the `ACTIVE` state, no new revision is committed.
27
+ # Consent is in the `ACTIVE` state, no new revision is committed. A
28
+ # FAILED_PRECONDITION error occurs if the latest revision of the given consent
29
+ # is in the `REJECTED` or `REVOKED` state.
28
30
  class ActivateConsentRequest
29
31
  include Google::Apis::Core::Hashable
30
32
 
31
- # Required. The resource name of the consent artifact that contains proof of the
32
- # end user's consent, of the form `projects/`project_id`/locations/`location_id`/
33
- # datasets/`dataset_id`/consentStores/`consent_store_id`/consentArtifacts/`
34
- # consent_artifact_id``. If the draft consent had a consent artifact, this
35
- # consent artifact overwrites it.
33
+ # Required. The resource name of the Consent artifact that contains
34
+ # documentation of the user's consent, of the form `projects/`project_id`/
35
+ # locations/`location_id`/datasets/`dataset_id`/consentStores/`consent_store_id`/
36
+ # consentArtifacts/`consent_artifact_id``. If the draft Consent had a Consent
37
+ # artifact, this Consent artifact overwrites it.
36
38
  # Corresponds to the JSON property `consentArtifact`
37
39
  # @return [String]
38
40
  attr_accessor :consent_artifact
39
41
 
40
- # Timestamp in UTC of when this consent is considered expired.
42
+ # Timestamp in UTC of when this Consent is considered expired.
41
43
  # Corresponds to the JSON property `expireTime`
42
44
  # @return [String]
43
45
  attr_accessor :expire_time
44
46
 
45
- # The time to live for this consent from when it is marked as active.
47
+ # The time to live for this Consent from when it is marked as active.
46
48
  # Corresponds to the JSON property `ttl`
47
49
  # @return [String]
48
50
  attr_accessor :ttl
@@ -68,6 +70,12 @@ module Google
68
70
  # @return [String]
69
71
  attr_accessor :document_content
70
72
 
73
+ # A list of licensed vocabularies to use in the request, in addition to the
74
+ # default unlicensed vocabularies.
75
+ # Corresponds to the JSON property `licensedVocabularies`
76
+ # @return [Array<String>]
77
+ attr_accessor :licensed_vocabularies
78
+
71
79
  def initialize(**args)
72
80
  update!(**args)
73
81
  end
@@ -75,6 +83,7 @@ module Google
75
83
  # Update properties of this object
76
84
  def update!(**args)
77
85
  @document_content = args[:document_content] if args.key?(:document_content)
86
+ @licensed_vocabularies = args[:licensed_vocabularies] if args.key?(:licensed_vocabularies)
78
87
  end
79
88
  end
80
89
 
@@ -88,7 +97,7 @@ module Google
88
97
  # @return [Array<Google::Apis::HealthcareV1beta1::Entity>]
89
98
  attr_accessor :entities
90
99
 
91
- # entity_mentions contains all the annotated medical entities that were were
100
+ # entity_mentions contains all the annotated medical entities that were
92
101
  # mentioned in the provided document.
93
102
  # Corresponds to the JSON property `entityMentions`
94
103
  # @return [Array<Google::Apis::HealthcareV1beta1::EntityMention>]
@@ -276,13 +285,13 @@ module Google
276
285
  end
277
286
  end
278
287
 
279
- # An attribute value for a consent or data mapping. Each Attribute must have a
280
- # corresponding AttributeDefinition in the consent store that defines the
288
+ # An attribute value for a Consent or User data mapping. Each Attribute must
289
+ # have a corresponding AttributeDefinition in the consent store that defines the
281
290
  # default and allowed values.
282
291
  class Attribute
283
292
  include Google::Apis::Core::Hashable
284
293
 
285
- # Indicates the name of an attribute defined at the consent store.
294
+ # Indicates the name of an attribute defined in the consent store.
286
295
  # Corresponds to the JSON property `attributeDefinitionId`
287
296
  # @return [String]
288
297
  attr_accessor :attribute_definition_id
@@ -323,27 +332,28 @@ module Google
323
332
  # @return [String]
324
333
  attr_accessor :category
325
334
 
326
- # Default values of the attribute in consents. If no default values are
327
- # specified, it defaults to an empty value.
335
+ # Optional. Default values of the attribute in Consents. If no default values
336
+ # are specified, it defaults to an empty value.
328
337
  # Corresponds to the JSON property `consentDefaultValues`
329
338
  # @return [Array<String>]
330
339
  attr_accessor :consent_default_values
331
340
 
332
- # Default value of the attribute in user data mappings. If no default value is
333
- # specified, it defaults to an empty value. This field is only applicable to
334
- # attributes of the category `RESOURCE`.
341
+ # Optional. Default value of the attribute in User data mappings. If no default
342
+ # value is specified, it defaults to an empty value. This field is only
343
+ # applicable to attributes of the category `RESOURCE`.
335
344
  # Corresponds to the JSON property `dataMappingDefaultValue`
336
345
  # @return [String]
337
346
  attr_accessor :data_mapping_default_value
338
347
 
339
- # A description of the attribute.
348
+ # Optional. A description of the attribute.
340
349
  # Corresponds to the JSON property `description`
341
350
  # @return [String]
342
351
  attr_accessor :description
343
352
 
344
- # Resource name of the attribute definition, of the form `projects/`project_id`/
353
+ # Resource name of the Attribute definition, of the form `projects/`project_id`/
345
354
  # locations/`location_id`/datasets/`dataset_id`/consentStores/`consent_store_id`/
346
- # attributeDefinitions/`attribute_definition_id``.
355
+ # attributeDefinitions/`attribute_definition_id``. Cannot be changed after
356
+ # creation.
347
357
  # Corresponds to the JSON property `name`
348
358
  # @return [String]
349
359
  attr_accessor :name
@@ -581,7 +591,7 @@ module Google
581
591
  end
582
592
  end
583
593
 
584
- # Checks if a particular data_id of a User data mapping in the given Consent
594
+ # Checks if a particular data_id of a User data mapping in the given consent
585
595
  # store is consented for a given use.
586
596
  class CheckDataAccessRequest
587
597
  include Google::Apis::Core::Hashable
@@ -591,8 +601,8 @@ module Google
591
601
  # @return [Google::Apis::HealthcareV1beta1::ConsentList]
592
602
  attr_accessor :consent_list
593
603
 
594
- # The unique identifier of the data to check access for. It must exist in the
595
- # given `consent_store`.
604
+ # Required. The unique identifier of the resource to check access for. This
605
+ # identifier must correspond to a User data mapping in the given consent store.
596
606
  # Corresponds to the JSON property `dataId`
597
607
  # @return [String]
598
608
  attr_accessor :data_id
@@ -602,8 +612,8 @@ module Google
602
612
  # @return [Hash<String,String>]
603
613
  attr_accessor :request_attributes
604
614
 
605
- # The view for CheckDataAccessResponse. If unspecified, defaults to `BASIC` and
606
- # returns `consented` as `TRUE` or `FALSE`.
615
+ # Optional. The view for CheckDataAccessResponse. If unspecified, defaults to `
616
+ # BASIC` and returns `consented` as `TRUE` or `FALSE`.
607
617
  # Corresponds to the JSON property `responseView`
608
618
  # @return [String]
609
619
  attr_accessor :response_view
@@ -621,7 +631,7 @@ module Google
621
631
  end
622
632
  end
623
633
 
624
- # Checks if a particular data_id of a User data mapping in the given Consent
634
+ # Checks if a particular data_id of a User data mapping in the given consent
625
635
  # store is consented for a given use.
626
636
  class CheckDataAccessResponse
627
637
  include Google::Apis::Core::Hashable
@@ -631,7 +641,7 @@ module Google
631
641
  # @return [Hash<String,Google::Apis::HealthcareV1beta1::ConsentEvaluation>]
632
642
  attr_accessor :consent_details
633
643
 
634
- # Whether the requested data is consented for the given use.
644
+ # Whether the requested resource is consented for the given use.
635
645
  # Corresponds to the JSON property `consented`
636
646
  # @return [Boolean]
637
647
  attr_accessor :consented
@@ -667,11 +677,11 @@ module Google
667
677
  end
668
678
  end
669
679
 
670
- # Represents an end user's consent.
680
+ # Represents a user's consent.
671
681
  class Consent
672
682
  include Google::Apis::Core::Hashable
673
683
 
674
- # Required. The resource name of the consent artifact that contains proof of the
684
+ # Required. The resource name of the Consent artifact that contains proof of the
675
685
  # end user's consent, of the form `projects/`project_id`/locations/`location_id`/
676
686
  # datasets/`dataset_id`/consentStores/`consent_store_id`/consentArtifacts/`
677
687
  # consent_artifact_id``.
@@ -679,17 +689,17 @@ module Google
679
689
  # @return [String]
680
690
  attr_accessor :consent_artifact
681
691
 
682
- # Timestamp in UTC of when this consent is considered expired.
692
+ # Timestamp in UTC of when this Consent is considered expired.
683
693
  # Corresponds to the JSON property `expireTime`
684
694
  # @return [String]
685
695
  attr_accessor :expire_time
686
696
 
687
- # User-supplied key-value pairs used to organize consent resources. Metadata
688
- # keys must: - be between 1 and 63 characters long - have a UTF-8 encoding of
689
- # maximum 128 bytes - begin with a letter - consist of up to 63 characters
690
- # including lowercase letters, numeric characters, underscores, and dashes
691
- # Metadata values must be: - be between 1 and 63 characters long - have a UTF-8
692
- # encoding of maximum 128 bytes - consist of up to 63 characters including
697
+ # Optional. User-supplied key-value pairs used to organize Consent resources.
698
+ # Metadata keys must: - be between 1 and 63 characters long - have a UTF-8
699
+ # encoding of maximum 128 bytes - begin with a letter - consist of up to 63
700
+ # characters including lowercase letters, numeric characters, underscores, and
701
+ # dashes Metadata values must be: - be between 1 and 63 characters long - have a
702
+ # UTF-8 encoding of maximum 128 bytes - consist of up to 63 characters including
693
703
  # lowercase letters, numeric characters, underscores, and dashes No more than 64
694
704
  # metadata entries can be associated with a given consent.
695
705
  # Corresponds to the JSON property `metadata`
@@ -698,12 +708,12 @@ module Google
698
708
 
699
709
  # Resource name of the Consent, of the form `projects/`project_id`/locations/`
700
710
  # location_id`/datasets/`dataset_id`/consentStores/`consent_store_id`/consents/`
701
- # consent_id``.
711
+ # consent_id``. Cannot be changed after creation.
702
712
  # Corresponds to the JSON property `name`
703
713
  # @return [String]
704
714
  attr_accessor :name
705
715
 
706
- # Represents an end user's consent in terms of the resources that can be
716
+ # Optional. Represents a user's consent in terms of the resources that can be
707
717
  # accessed and under what conditions.
708
718
  # Corresponds to the JSON property `policies`
709
719
  # @return [Array<Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1ConsentPolicy>]
@@ -714,19 +724,19 @@ module Google
714
724
  # @return [String]
715
725
  attr_accessor :revision_create_time
716
726
 
717
- # Output only. The revision ID of the consent. The format is an 8-character
727
+ # Output only. The revision ID of the Consent. The format is an 8-character
718
728
  # hexadecimal string. Refer to a specific revision of a Consent by appending `@`
719
729
  # revision_id`` to the Consent's resource name.
720
730
  # Corresponds to the JSON property `revisionId`
721
731
  # @return [String]
722
732
  attr_accessor :revision_id
723
733
 
724
- # Indicates the current state of this consent.
734
+ # Required. Indicates the current state of this Consent.
725
735
  # Corresponds to the JSON property `state`
726
736
  # @return [String]
727
737
  attr_accessor :state
728
738
 
729
- # Input only. The time to live for this consent from when it is created.
739
+ # Input only. The time to live for this Consent from when it is created.
730
740
  # Corresponds to the JSON property `ttl`
731
741
  # @return [String]
732
742
  attr_accessor :ttl
@@ -755,16 +765,18 @@ module Google
755
765
  end
756
766
  end
757
767
 
758
- # Proof of an end user's consent.
768
+ # Documentation of a user's consent.
759
769
  class ConsentArtifact
760
770
  include Google::Apis::Core::Hashable
761
771
 
762
- # Screenshots of the consent content.
772
+ # Optional. Screenshots, PDFs, or other binary information documenting the user'
773
+ # s consent.
763
774
  # Corresponds to the JSON property `consentContentScreenshots`
764
775
  # @return [Array<Google::Apis::HealthcareV1beta1::Image>]
765
776
  attr_accessor :consent_content_screenshots
766
777
 
767
- # An string indicating the version of the consent content.
778
+ # Optional. An string indicating the version of the consent information shown to
779
+ # the user.
768
780
  # Corresponds to the JSON property `consentContentVersion`
769
781
  # @return [String]
770
782
  attr_accessor :consent_content_version
@@ -774,15 +786,15 @@ module Google
774
786
  # @return [Google::Apis::HealthcareV1beta1::Signature]
775
787
  attr_accessor :guardian_signature
776
788
 
777
- # Metadata associated with the consent artifact. For example, the consent locale
778
- # or user agent version.
789
+ # Optional. Metadata associated with the Consent artifact. For example, the
790
+ # consent locale or user agent version.
779
791
  # Corresponds to the JSON property `metadata`
780
792
  # @return [Hash<String,String>]
781
793
  attr_accessor :metadata
782
794
 
783
795
  # Resource name of the Consent artifact, of the form `projects/`project_id`/
784
796
  # locations/`location_id`/datasets/`dataset_id`/consentStores/`consent_store_id`/
785
- # consentArtifacts/`consent_artifact_id``.
797
+ # consentArtifacts/`consent_artifact_id``. Cannot be changed after creation.
786
798
  # Corresponds to the JSON property `name`
787
799
  # @return [String]
788
800
  attr_accessor :name
@@ -859,36 +871,39 @@ module Google
859
871
  end
860
872
  end
861
873
 
862
- # Represents a Consent store.
874
+ # Represents a consent store.
863
875
  class ConsentStore
864
876
  include Google::Apis::Core::Hashable
865
877
 
866
- # Default time to live for consents in this store. Must be at least 24 hours.
867
- # Updating this field will not affect the expiration time of existing consents.
878
+ # Optional. Default time to live for Consents created in this store. Must be at
879
+ # least 24 hours. Updating this field will not affect the expiration time of
880
+ # existing consents.
868
881
  # Corresponds to the JSON property `defaultConsentTtl`
869
882
  # @return [String]
870
883
  attr_accessor :default_consent_ttl
871
884
 
872
- # If true, UpdateConsent creates the consent if it does not already exist.
885
+ # Optional. If `true`, UpdateConsent creates the Consent if it does not already
886
+ # exist. If unspecified, defaults to `false`.
873
887
  # Corresponds to the JSON property `enableConsentCreateOnUpdate`
874
888
  # @return [Boolean]
875
889
  attr_accessor :enable_consent_create_on_update
876
890
  alias_method :enable_consent_create_on_update?, :enable_consent_create_on_update
877
891
 
878
- # User-supplied key-value pairs used to organize Consent stores. Label keys must
879
- # be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128
880
- # bytes, and must conform to the following PCRE regular expression: \p`Ll`\p`Lo``
881
- # 0,62` Label values must be between 1 and 63 characters long, have a UTF-8
882
- # encoding of maximum 128 bytes, and must conform to the following PCRE regular
883
- # expression: [\p`Ll`\p`Lo`\p`N`_-]`0,63` No more than 64 labels can be
884
- # associated with a given store.
892
+ # Optional. User-supplied key-value pairs used to organize consent stores. Label
893
+ # keys must be between 1 and 63 characters long, have a UTF-8 encoding of
894
+ # maximum 128 bytes, and must conform to the following PCRE regular expression: \
895
+ # p`Ll`\p`Lo``0,62`. Label values must be between 1 and 63 characters long, have
896
+ # a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE
897
+ # regular expression: [\p`Ll`\p`Lo`\p`N`_-]`0,63`. No more than 64 labels can be
898
+ # associated with a given store. For more information: https://cloud.google.com/
899
+ # healthcare/docs/how-tos/labeling-resources
885
900
  # Corresponds to the JSON property `labels`
886
901
  # @return [Hash<String,String>]
887
902
  attr_accessor :labels
888
903
 
889
- # Resource name of the Consent store, of the form `projects/`project_id`/
904
+ # Resource name of the consent store, of the form `projects/`project_id`/
890
905
  # locations/`location_id`/datasets/`dataset_id`/consentStores/`consent_store_id``
891
- # .
906
+ # . Cannot be changed after creation.
892
907
  # Corresponds to the JSON property `name`
893
908
  # @return [String]
894
909
  attr_accessor :name
@@ -1535,7 +1550,10 @@ module Google
1535
1550
  end
1536
1551
  end
1537
1552
 
1538
- # Evaluate an end user's Consents for all matching User data mappings.
1553
+ # Evaluate a user's Consents for all matching User data mappings. Note: User
1554
+ # data mappings are indexed asynchronously, causing slight delays between the
1555
+ # time mappings are created or updated and when they are included in
1556
+ # EvaluateUserConsents results.
1539
1557
  class EvaluateUserConsentsRequest
1540
1558
  include Google::Apis::Core::Hashable
1541
1559
 
@@ -1544,30 +1562,31 @@ module Google
1544
1562
  # @return [Google::Apis::HealthcareV1beta1::ConsentList]
1545
1563
  attr_accessor :consent_list
1546
1564
 
1547
- # Limit on the number of user data mappings to return in a single response. If
1548
- # not specified, 100 is used. May not be larger than 1000.
1565
+ # Optional. Limit on the number of User data mappings to return in a single
1566
+ # response. If not specified, 100 is used. May not be larger than 1000.
1549
1567
  # Corresponds to the JSON property `pageSize`
1550
1568
  # @return [Fixnum]
1551
1569
  attr_accessor :page_size
1552
1570
 
1553
- # Token to retrieve the next page of results to get the first page.
1571
+ # Optional. Token to retrieve the next page of results, or empty to get the
1572
+ # first page.
1554
1573
  # Corresponds to the JSON property `pageToken`
1555
1574
  # @return [String]
1556
1575
  attr_accessor :page_token
1557
1576
 
1558
- # The values of request attributes associated with this access request.
1577
+ # Required. The values of request attributes associated with this access request.
1559
1578
  # Corresponds to the JSON property `requestAttributes`
1560
1579
  # @return [Hash<String,String>]
1561
1580
  attr_accessor :request_attributes
1562
1581
 
1563
- # The values of resources attributes associated with the type of data being
1564
- # requested. If no values are specified, then all data types are queried.
1582
+ # Optional. The values of resource attributes associated with the resources
1583
+ # being requested. If no values are specified, then all resources are queried.
1565
1584
  # Corresponds to the JSON property `resourceAttributes`
1566
1585
  # @return [Hash<String,String>]
1567
1586
  attr_accessor :resource_attributes
1568
1587
 
1569
- # The view for EvaluateUserConsentsResponse. If unspecified, defaults to `BASIC`
1570
- # and returns `consented` as `TRUE` or `FALSE`.
1588
+ # Optional. The view for EvaluateUserConsentsResponse. If unspecified, defaults
1589
+ # to `BASIC` and returns `consented` as `TRUE` or `FALSE`.
1571
1590
  # Corresponds to the JSON property `responseView`
1572
1591
  # @return [String]
1573
1592
  attr_accessor :response_view
@@ -1593,11 +1612,11 @@ module Google
1593
1612
  end
1594
1613
  end
1595
1614
 
1596
- # Evaluate an end user's Consents for all matching User data mappings.
1615
+ #
1597
1616
  class EvaluateUserConsentsResponse
1598
1617
  include Google::Apis::Core::Hashable
1599
1618
 
1600
- # Token to retrieve the next page of results or empty if there are no more
1619
+ # Token to retrieve the next page of results, or empty if there are no more
1601
1620
  # results in the list. This token is valid for 72 hours after it is created.
1602
1621
  # Corresponds to the JSON property `nextPageToken`
1603
1622
  # @return [String]
@@ -1959,8 +1978,8 @@ module Google
1959
1978
  # resource return errors. It is strongly advised not to include or encode any
1960
1979
  # sensitive data such as patient identifiers in client-specified resource IDs.
1961
1980
  # Those IDs are part of the FHIR resource path recorded in Cloud audit logs and
1962
- # Cloud Pub/Sub notifications. Those IDs can also be contained in reference
1963
- # fields within other resources.
1981
+ # Pub/Sub notifications. Those IDs can also be contained in reference fields
1982
+ # within other resources.
1964
1983
  # Corresponds to the JSON property `enableUpdateCreate`
1965
1984
  # @return [Boolean]
1966
1985
  attr_accessor :enable_update_create
@@ -2266,9 +2285,9 @@ module Google
2266
2285
  # @return [String]
2267
2286
  attr_accessor :table_uri
2268
2287
 
2269
- # Determines whether existing tables in the destination dataset are overwritten
2270
- # or appended to. If a write_disposition is specified, the `force` parameter is
2271
- # ignored.
2288
+ # Determines if existing data in the destination dataset is overwritten,
2289
+ # appended to, or not written if the tables contain data. If a write_disposition
2290
+ # is specified, the `force` parameter is ignored.
2272
2291
  # Corresponds to the JSON property `writeDisposition`
2273
2292
  # @return [String]
2274
2293
  attr_accessor :write_disposition
@@ -2361,8 +2380,8 @@ module Google
2361
2380
  end
2362
2381
  end
2363
2382
 
2364
- # Represents an end user's consent in terms of the resources that can be
2365
- # accessed and under what conditions.
2383
+ # Represents a user's consent in terms of the resources that can be accessed and
2384
+ # under what conditions.
2366
2385
  class GoogleCloudHealthcareV1beta1ConsentPolicy
2367
2386
  include Google::Apis::Core::Hashable
2368
2387
 
@@ -2385,8 +2404,9 @@ module Google
2385
2404
  # @return [Google::Apis::HealthcareV1beta1::Expr]
2386
2405
  attr_accessor :authorization_rule
2387
2406
 
2388
- # The data resources that this policy applies to. A data resource is a match if
2389
- # it matches all the attributes listed here.
2407
+ # The resources that this policy applies to. A resource is a match if it matches
2408
+ # all the attributes listed here. If empty, this policy applies to all User data
2409
+ # mappings for the given user.
2390
2410
  # Corresponds to the JSON property `resourceAttributes`
2391
2411
  # @return [Array<Google::Apis::HealthcareV1beta1::Attribute>]
2392
2412
  attr_accessor :resource_attributes
@@ -2519,14 +2539,15 @@ module Google
2519
2539
  # Points to a Cloud Storage URI containing file(s) with content only. The URI
2520
2540
  # must be in the following format: `gs://`bucket_id`/`object_id``. The URI can
2521
2541
  # include wildcards in `object_id` and thus identify multiple files. Supported
2522
- # wildcards: '*' to match 0 or more non-separator characters '**' to match 0 or
2523
- # more characters (including separators). Must be used at the end of a path and
2524
- # with no other wildcards in the path. Can also be used with a file extension (
2525
- # such as .dcm), which imports all files with the extension in the specified
2526
- # directory and its sub-directories. For example, `gs://my-bucket/my-directory/**
2527
- # .dcm` imports all files with .dcm extensions in `my-directory/` and its sub-
2528
- # directories. '?' to match 1 character All other URI formats are invalid. Files
2529
- # matching the wildcard are expected to contain content only, no metadata.
2542
+ # wildcards: * '*' to match 0 or more non-separator characters * '**' to match 0
2543
+ # or more characters (including separators). Must be used at the end of a path
2544
+ # and with no other wildcards in the path. Can also be used with a file
2545
+ # extension (such as .dcm), which imports all files with the extension in the
2546
+ # specified directory and its sub-directories. For example, `gs://my-bucket/my-
2547
+ # directory/**.dcm` imports all files with .dcm extensions in `my-directory/`
2548
+ # and its sub-directories. * '?' to match 1 character. All other URI formats are
2549
+ # invalid. Files matching the wildcard are expected to contain content only, no
2550
+ # metadata.
2530
2551
  # Corresponds to the JSON property `uri`
2531
2552
  # @return [String]
2532
2553
  attr_accessor :uri
@@ -2584,9 +2605,9 @@ module Google
2584
2605
  # @return [Google::Apis::HealthcareV1beta1::SchemaConfig]
2585
2606
  attr_accessor :schema_config
2586
2607
 
2587
- # Determines whether existing tables in the destination dataset are overwritten
2588
- # or appended to. If a write_disposition is specified, the `force` parameter is
2589
- # ignored.
2608
+ # Determines if existing data in the destination dataset is overwritten,
2609
+ # appended to, or not written if the tables contain data. If a write_disposition
2610
+ # is specified, the `force` parameter is ignored.
2590
2611
  # Corresponds to the JSON property `writeDisposition`
2591
2612
  # @return [String]
2592
2613
  attr_accessor :write_disposition
@@ -2796,31 +2817,34 @@ module Google
2796
2817
  # dataset's time_zone, from the MSH-7 segment. For example, `send_date < "2017-
2797
2818
  # 01-02"`. * `send_time`, the timestamp when the message was sent, using the
2798
2819
  # RFC3339 time format for comparisons, from the MSH-7 segment. For example, `
2799
- # send_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`, the care center
2800
- # that the message came from, from the MSH-4 segment. For example, `
2801
- # send_facility = "ABC"`. * `PatientId(value, type)`, which matches if the
2802
- # message lists a patient having an ID of the given value and type in the PID-2,
2803
- # PID-3, or PID-4 segments. For example, `PatientId("123456", "MRN")`. * `labels.
2804
- # x`, a string value of the label with key `x` as set using the Message.labels
2805
- # map. For example, `labels."priority"="high"`. The operator `:*` can be used to
2806
- # assert the existence of a label. For example, `labels."priority":*`.
2820
+ # send_time < "2017-01-02T00:00:00-05:00"`. * `create_time`, the timestamp when
2821
+ # the message was created in the HL7v2 store. Use the RFC3339 time format for
2822
+ # comparisons. For example, `create_time < "2017-01-02T00:00:00-05:00"`. * `
2823
+ # send_facility`, the care center that the message came from, from the MSH-4
2824
+ # segment. For example, `send_facility = "ABC"`. * `PatientId(value, type)`,
2825
+ # which matches if the message lists a patient having an ID of the given value
2826
+ # and type in the PID-2, PID-3, or PID-4 segments. For example, `PatientId("
2827
+ # 123456", "MRN")`. * `labels.x`, a string value of the label with key `x` as
2828
+ # set using the Message.labels map. For example, `labels."priority"="high"`. The
2829
+ # operator `:*` can be used to assert the existence of a label. For example, `
2830
+ # labels."priority":*`.
2807
2831
  # Corresponds to the JSON property `filter`
2808
2832
  # @return [String]
2809
2833
  attr_accessor :filter
2810
2834
 
2811
- # The [Cloud Pub/Sub](https://cloud.google.com/pubsub/docs/) topic that
2812
- # notifications of changes are published on. Supplied by the client. The
2813
- # notification is a `PubsubMessage` with the following fields: * `PubsubMessage.
2814
- # Data` contains the resource name. * `PubsubMessage.MessageId` is the ID of
2815
- # this notification. It is guaranteed to be unique within the topic. * `
2816
- # PubsubMessage.PublishTime` is the time when the message was published. Note
2817
- # that notifications are only sent if the topic is non-empty. [Topic names](
2818
- # https://cloud.google.com/pubsub/docs/overview#names) must be scoped to a
2819
- # project. Cloud Healthcare API service account must have publisher permissions
2820
- # on the given Pub/Sub topic. Not having adequate permissions causes the calls
2821
- # that send notifications to fail. If a notification can't be published to Cloud
2822
- # Pub/Sub, errors are logged to Cloud Logging. For more information, see [
2823
- # Viewing error logs in Cloud Logging](/healthcare/docs/how-tos/logging).
2835
+ # The [Pub/Sub](https://cloud.google.com/pubsub/docs/) topic that notifications
2836
+ # of changes are published on. Supplied by the client. The notification is a `
2837
+ # PubsubMessage` with the following fields: * `PubsubMessage.Data` contains the
2838
+ # resource name. * `PubsubMessage.MessageId` is the ID of this notification. It
2839
+ # is guaranteed to be unique within the topic. * `PubsubMessage.PublishTime` is
2840
+ # the time when the message was published. Note that notifications are only sent
2841
+ # if the topic is non-empty. [Topic names](https://cloud.google.com/pubsub/docs/
2842
+ # overview#names) must be scoped to a project. Cloud Healthcare API service
2843
+ # account must have publisher permissions on the given Pub/Sub topic. Not having
2844
+ # adequate permissions causes the calls that send notifications to fail. If a
2845
+ # notification can't be published to Pub/Sub, errors are logged to Cloud Logging.
2846
+ # For more information, see [Viewing error logs in Cloud Logging](https://cloud.
2847
+ # google.com/healthcare/docs/how-tos/logging).
2824
2848
  # Corresponds to the JSON property `pubsubTopic`
2825
2849
  # @return [String]
2826
2850
  attr_accessor :pubsub_topic
@@ -3384,17 +3408,17 @@ module Google
3384
3408
  end
3385
3409
  end
3386
3410
 
3387
- # Lists the Attribute definitions in the given Consent store.
3411
+ #
3388
3412
  class ListAttributeDefinitionsResponse
3389
3413
  include Google::Apis::Core::Hashable
3390
3414
 
3391
- # The returned attribute definitions. The maximum number of attributes returned
3415
+ # The returned Attribute definitions. The maximum number of attributes returned
3392
3416
  # is determined by the value of page_size in the ListAttributeDefinitionsRequest.
3393
3417
  # Corresponds to the JSON property `attributeDefinitions`
3394
3418
  # @return [Array<Google::Apis::HealthcareV1beta1::AttributeDefinition>]
3395
3419
  attr_accessor :attribute_definitions
3396
3420
 
3397
- # Token to retrieve the next page of results or empty if there are no more
3421
+ # Token to retrieve the next page of results, or empty if there are no more
3398
3422
  # results in the list.
3399
3423
  # Corresponds to the JSON property `nextPageToken`
3400
3424
  # @return [String]
@@ -3411,17 +3435,17 @@ module Google
3411
3435
  end
3412
3436
  end
3413
3437
 
3414
- # Lists the Consent artifacts in the given Consent store.
3438
+ #
3415
3439
  class ListConsentArtifactsResponse
3416
3440
  include Google::Apis::Core::Hashable
3417
3441
 
3418
- # The returned consent artifacts. The maximum number of artifacts returned is
3442
+ # The returned Consent artifacts. The maximum number of artifacts returned is
3419
3443
  # determined by the value of page_size in the ListConsentArtifactsRequest.
3420
3444
  # Corresponds to the JSON property `consentArtifacts`
3421
3445
  # @return [Array<Google::Apis::HealthcareV1beta1::ConsentArtifact>]
3422
3446
  attr_accessor :consent_artifacts
3423
3447
 
3424
- # Token to retrieve the next page of results or empty if there are no more
3448
+ # Token to retrieve the next page of results, or empty if there are no more
3425
3449
  # results in the list.
3426
3450
  # Corresponds to the JSON property `nextPageToken`
3427
3451
  # @return [String]
@@ -3438,17 +3462,17 @@ module Google
3438
3462
  end
3439
3463
  end
3440
3464
 
3441
- # Lists the revisions of the given Consent in reverse chronological order.
3465
+ #
3442
3466
  class ListConsentRevisionsResponse
3443
3467
  include Google::Apis::Core::Hashable
3444
3468
 
3445
- # The returned consent revisions. The maximum number of revisions returned is
3469
+ # The returned Consent revisions. The maximum number of revisions returned is
3446
3470
  # determined by the value of `page_size` in the ListConsentRevisionsRequest.
3447
3471
  # Corresponds to the JSON property `consents`
3448
3472
  # @return [Array<Google::Apis::HealthcareV1beta1::Consent>]
3449
3473
  attr_accessor :consents
3450
3474
 
3451
- # Token to retrieve the next page of results or empty if there are no more
3475
+ # Token to retrieve the next page of results, or empty if there are no more
3452
3476
  # results in the list.
3453
3477
  # Corresponds to the JSON property `nextPageToken`
3454
3478
  # @return [String]
@@ -3465,17 +3489,17 @@ module Google
3465
3489
  end
3466
3490
  end
3467
3491
 
3468
- # Lists the Consent stores in the given dataset.
3492
+ #
3469
3493
  class ListConsentStoresResponse
3470
3494
  include Google::Apis::Core::Hashable
3471
3495
 
3472
- # The returned Consent stores. The maximum number of stores returned is
3496
+ # The returned consent stores. The maximum number of stores returned is
3473
3497
  # determined by the value of page_size in the ListConsentStoresRequest.
3474
3498
  # Corresponds to the JSON property `consentStores`
3475
3499
  # @return [Array<Google::Apis::HealthcareV1beta1::ConsentStore>]
3476
3500
  attr_accessor :consent_stores
3477
3501
 
3478
- # Token to retrieve the next page of results or empty if there are no more
3502
+ # Token to retrieve the next page of results, or empty if there are no more
3479
3503
  # results in the list.
3480
3504
  # Corresponds to the JSON property `nextPageToken`
3481
3505
  # @return [String]
@@ -3492,17 +3516,17 @@ module Google
3492
3516
  end
3493
3517
  end
3494
3518
 
3495
- # Lists the Consents in the given Consent store.
3519
+ #
3496
3520
  class ListConsentsResponse
3497
3521
  include Google::Apis::Core::Hashable
3498
3522
 
3499
- # The returned consents. The maximum number of consents returned is determined
3523
+ # The returned Consents. The maximum number of Consents returned is determined
3500
3524
  # by the value of page_size in the ListConsentsRequest.
3501
3525
  # Corresponds to the JSON property `consents`
3502
3526
  # @return [Array<Google::Apis::HealthcareV1beta1::Consent>]
3503
3527
  attr_accessor :consents
3504
3528
 
3505
- # Token to retrieve the next page of results or empty if there are no more
3529
+ # Token to retrieve the next page of results, or empty if there are no more
3506
3530
  # results in the list.
3507
3531
  # Corresponds to the JSON property `nextPageToken`
3508
3532
  # @return [String]
@@ -3703,17 +3727,17 @@ module Google
3703
3727
  end
3704
3728
  end
3705
3729
 
3706
- # Lists the User data mappings in the given Consent store.
3730
+ #
3707
3731
  class ListUserDataMappingsResponse
3708
3732
  include Google::Apis::Core::Hashable
3709
3733
 
3710
- # Token to retrieve the next page of results or empty if there are no more
3734
+ # Token to retrieve the next page of results, or empty if there are no more
3711
3735
  # results in the list.
3712
3736
  # Corresponds to the JSON property `nextPageToken`
3713
3737
  # @return [String]
3714
3738
  attr_accessor :next_page_token
3715
3739
 
3716
- # The returned user data mappings. The maximum number of user data mappings
3740
+ # The returned User data mappings. The maximum number of User data mappings
3717
3741
  # returned is determined by the value of page_size in the
3718
3742
  # ListUserDataMappingsRequest.
3719
3743
  # Corresponds to the JSON property `userDataMappings`
@@ -3866,17 +3890,17 @@ module Google
3866
3890
  class NotificationConfig
3867
3891
  include Google::Apis::Core::Hashable
3868
3892
 
3869
- # The [Cloud Pub/Sub](https://cloud.google.com/pubsub/docs/) topic that
3870
- # notifications of changes are published on. Supplied by the client.
3871
- # PubsubMessage.Data contains the resource name. PubsubMessage.MessageId is the
3872
- # ID of this message. It is guaranteed to be unique within the topic.
3873
- # PubsubMessage.PublishTime is the time at which the message was published.
3874
- # Notifications are only sent if the topic is non-empty. [Topic names](https://
3875
- # cloud.google.com/pubsub/docs/overview#names) must be scoped to a project.
3876
- # Cloud Healthcare API service account must have publisher permissions on the
3877
- # given Cloud Pub/Sub topic. Not having adequate permissions causes the calls
3878
- # that send notifications to fail. If a notification can't be published to Cloud
3879
- # Pub/Sub, errors are logged to Cloud Logging (see [Viewing logs](/healthcare/
3893
+ # The [Pub/Sub](https://cloud.google.com/pubsub/docs/) topic that notifications
3894
+ # of changes are published on. Supplied by the client. PubsubMessage.Data
3895
+ # contains the resource name. PubsubMessage.MessageId is the ID of this message.
3896
+ # It is guaranteed to be unique within the topic. PubsubMessage.PublishTime is
3897
+ # the time at which the message was published. Notifications are only sent if
3898
+ # the topic is non-empty. [Topic names](https://cloud.google.com/pubsub/docs/
3899
+ # overview#names) must be scoped to a project. Cloud Healthcare API service
3900
+ # account must have publisher permissions on the given Pub/Sub topic. Not having
3901
+ # adequate permissions causes the calls that send notifications to fail. If a
3902
+ # notification can't be published to Pub/Sub, errors are logged to Cloud Logging
3903
+ # (see [Viewing error logs in Cloud Logging](https://cloud.google.com/healthcare/
3880
3904
  # docs/how-tos/logging)). If the number of errors exceeds a certain rate, some
3881
3905
  # aren't submitted. Note that not all operations trigger notifications, see [
3882
3906
  # Configuring Pub/Sub notifications](https://cloud.google.com/healthcare/docs/
@@ -3989,8 +4013,8 @@ module Google
3989
4013
  attr_accessor :end_time
3990
4014
 
3991
4015
  # A link to audit and error logs in the log viewer. Error logs are generated
3992
- # only by some operations, listed at [Viewing logs](/healthcare/docs/how-tos/
3993
- # logging).
4016
+ # only by some operations, listed at [Viewing error logs in Cloud Logging](https:
4017
+ # //cloud.google.com/healthcare/docs/how-tos/logging).
3994
4018
  # Corresponds to the JSON property `logsUrl`
3995
4019
  # @return [String]
3996
4020
  attr_accessor :logs_url
@@ -4217,11 +4241,12 @@ module Google
4217
4241
  end
4218
4242
  end
4219
4243
 
4220
- # Queries all data_ids that are consented for a given use in the given Consent
4244
+ # Queries all data_ids that are consented for a given use in the given consent
4221
4245
  # store and writes them to a specified destination. The returned Operation
4222
4246
  # includes a progress counter for the number of User data mappings processed.
4223
- # Errors are logged to Cloud Logging (see [Viewing logs] (/healthcare/docs/how-
4224
- # tos/logging) and [QueryAccessibleData] for a sample log entry).
4247
+ # Errors are logged to Cloud Logging (see [Viewing error logs in Cloud Logging] (
4248
+ # https://cloud.google.com/healthcare/docs/how-tos/logging) and [
4249
+ # QueryAccessibleData] for a sample log entry).
4225
4250
  class QueryAccessibleDataRequest
4226
4251
  include Google::Apis::Core::Hashable
4227
4252
 
@@ -4235,9 +4260,9 @@ module Google
4235
4260
  # @return [Hash<String,String>]
4236
4261
  attr_accessor :request_attributes
4237
4262
 
4238
- # The values of resources attributes associated with the type of data being
4239
- # requested. If no values are specified, then all data types are included in the
4240
- # output.
4263
+ # Optional. The values of resource attributes associated with the type of
4264
+ # resources being requested. If no values are specified, then all resource types
4265
+ # are included in the output.
4241
4266
  # Corresponds to the JSON property `resourceAttributes`
4242
4267
  # @return [Hash<String,String>]
4243
4268
  attr_accessor :resource_attributes
@@ -4254,6 +4279,20 @@ module Google
4254
4279
  end
4255
4280
  end
4256
4281
 
4282
+ # Response for successful QueryAccessibleData operations. This structure is
4283
+ # included in the response upon operation completion.
4284
+ class QueryAccessibleDataResponse
4285
+ include Google::Apis::Core::Hashable
4286
+
4287
+ def initialize(**args)
4288
+ update!(**args)
4289
+ end
4290
+
4291
+ # Update properties of this object
4292
+ def update!(**args)
4293
+ end
4294
+ end
4295
+
4257
4296
  # Define how to redact sensitive values. Default behaviour is erase. For example,
4258
4297
  # "My name is Jane." becomes "My name is ."
4259
4298
  class RedactConfig
@@ -4270,15 +4309,15 @@ module Google
4270
4309
 
4271
4310
  # Rejects the latest revision of the specified Consent by committing a new
4272
4311
  # revision with `state` updated to `REJECTED`. If the latest revision of the
4273
- # given consent is in the `REJECTED` state, no new revision is committed.
4312
+ # given Consent is in the `REJECTED` state, no new revision is committed.
4274
4313
  class RejectConsentRequest
4275
4314
  include Google::Apis::Core::Hashable
4276
4315
 
4277
- # The resource name of the consent artifact that contains proof of the end user'
4278
- # s rejection of the draft consent, of the form `projects/`project_id`/locations/
4279
- # `location_id`/datasets/`dataset_id`/consentStores/`consent_store_id`/
4280
- # consentArtifacts/`consent_artifact_id``. If the draft consent had a consent
4281
- # artifact, this consent artifact overwrites it.
4316
+ # Optional. The resource name of the Consent artifact that contains
4317
+ # documentation of the user's rejection of the draft Consent, of the form `
4318
+ # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
4319
+ # consentStores/`consent_store_id`/consentArtifacts/`consent_artifact_id``. If
4320
+ # the draft Consent had a Consent artifact, this Consent artifact overwrites it.
4282
4321
  # Corresponds to the JSON property `consentArtifact`
4283
4322
  # @return [String]
4284
4323
  attr_accessor :consent_artifact
@@ -4355,13 +4394,13 @@ module Google
4355
4394
  # @return [Hash<String,Google::Apis::HealthcareV1beta1::ConsentEvaluation>]
4356
4395
  attr_accessor :consent_details
4357
4396
 
4358
- # Whether the requested data is consented for the given use.
4397
+ # Whether the resource is consented for the given use.
4359
4398
  # Corresponds to the JSON property `consented`
4360
4399
  # @return [Boolean]
4361
4400
  attr_accessor :consented
4362
4401
  alias_method :consented?, :consented
4363
4402
 
4364
- # The unique identifier of the data the consents were checked for.
4403
+ # The unique identifier of the evaluated resource.
4365
4404
  # Corresponds to the JSON property `dataId`
4366
4405
  # @return [String]
4367
4406
  attr_accessor :data_id
@@ -4380,13 +4419,13 @@ module Google
4380
4419
 
4381
4420
  # Revokes the latest revision of the specified Consent by committing a new
4382
4421
  # revision with `state` updated to `REVOKED`. If the latest revision of the
4383
- # given consent is in the `REVOKED` state, no new revision is committed.
4422
+ # given Consent is in the `REVOKED` state, no new revision is committed.
4384
4423
  class RevokeConsentRequest
4385
4424
  include Google::Apis::Core::Hashable
4386
4425
 
4387
- # The resource name of the consent artifact that contains proof of the end user'
4388
- # s revocation of the consent, of the form `projects/`project_id`/locations/`
4389
- # location_id`/datasets/`dataset_id`/consentStores/`consent_store_id`/
4426
+ # Optional. The resource name of the Consent artifact that contains proof of the
4427
+ # user's revocation of the Consent, of the form `projects/`project_id`/locations/
4428
+ # `location_id`/datasets/`dataset_id`/consentStores/`consent_store_id`/
4390
4429
  # consentArtifacts/`consent_artifact_id``.
4391
4430
  # Corresponds to the JSON property `consentArtifact`
4392
4431
  # @return [String]
@@ -4735,18 +4774,18 @@ module Google
4735
4774
  # @return [Google::Apis::HealthcareV1beta1::Image]
4736
4775
  attr_accessor :image
4737
4776
 
4738
- # Metadata associated with the user's signature. For example, the user's name or
4739
- # the user's title.
4777
+ # Optional. Metadata associated with the user's signature. For example, the user'
4778
+ # s name or the user's title.
4740
4779
  # Corresponds to the JSON property `metadata`
4741
4780
  # @return [Hash<String,String>]
4742
4781
  attr_accessor :metadata
4743
4782
 
4744
- # Timestamp of the signature.
4783
+ # Optional. Timestamp of the signature.
4745
4784
  # Corresponds to the JSON property `signatureTime`
4746
4785
  # @return [String]
4747
4786
  attr_accessor :signature_time
4748
4787
 
4749
- # User's UUID provided by the client.
4788
+ # Required. User's UUID provided by the client.
4750
4789
  # Corresponds to the JSON property `userId`
4751
4790
  # @return [String]
4752
4791
  attr_accessor :user_id
@@ -4970,22 +5009,22 @@ module Google
4970
5009
  end
4971
5010
  end
4972
5011
 
4973
- # Maps a user data entry to its end user and Attributes.
5012
+ # Maps a resource to the associated user and Attributes.
4974
5013
  class UserDataMapping
4975
5014
  include Google::Apis::Core::Hashable
4976
5015
 
4977
- # Output only. Indicates the time when this data mapping was archived.
5016
+ # Output only. Indicates the time when this mapping was archived.
4978
5017
  # Corresponds to the JSON property `archiveTime`
4979
5018
  # @return [String]
4980
5019
  attr_accessor :archive_time
4981
5020
 
4982
- # Output only. Indicates whether this data mapping is archived.
5021
+ # Output only. Indicates whether this mapping is archived.
4983
5022
  # Corresponds to the JSON property `archived`
4984
5023
  # @return [Boolean]
4985
5024
  attr_accessor :archived
4986
5025
  alias_method :archived?, :archived
4987
5026
 
4988
- # Required. A unique identifier for the mapped data.
5027
+ # Required. A unique identifier for the mapped resource.
4989
5028
  # Corresponds to the JSON property `dataId`
4990
5029
  # @return [String]
4991
5030
  attr_accessor :data_id
@@ -4997,11 +5036,10 @@ module Google
4997
5036
  # @return [String]
4998
5037
  attr_accessor :name
4999
5038
 
5000
- # Attributes of end user data. Each attribute can have exactly one value
5001
- # specified. Only explicitly set attributes are displayed here. Attribute
5002
- # definitions with defaults set implicitly apply to these User data mappings.
5003
- # Attributes listed here must be single valued, that is, exactly one value is
5004
- # specified for the field "values" in each Attribute.
5039
+ # Attributes of the resource. Only explicitly set attributes are displayed here.
5040
+ # Attribute definitions with defaults set implicitly apply to these User data
5041
+ # mappings. Attributes listed here must be single valued, that is, exactly one
5042
+ # value is specified for the field "values" in each Attribute.
5005
5043
  # Corresponds to the JSON property `resourceAttributes`
5006
5044
  # @return [Array<Google::Apis::HealthcareV1beta1::Attribute>]
5007
5045
  attr_accessor :resource_attributes