google-apis-healthcare_v1beta1 0.63.0 → 0.65.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e6dd1a7b2281688d59ad62cac008717d8bb065c4a61e6253825896368cbe0e38
4
- data.tar.gz: 01e6b45df447b7dd7517685fb49dd646b4f43b77ab4ce64328d3d69fd6efbc9d
3
+ metadata.gz: 7bca82c55c81ea9bd591426b2c5347825856a84e26acecf7230b0e7596ce1e2b
4
+ data.tar.gz: 7288ea2ad999bdbcd90316e952cf7f6436612df1d5983926a01555b42bd07818
5
5
  SHA512:
6
- metadata.gz: a0cd97bd660d806843839dc7407916bb7cbf528c9ceb22dd32019e31b48af35814f9b3cbb1137f9459ef3e06c67791efda80bf9ac4faa585603a1d2b0e7592d8
7
- data.tar.gz: 71850d20f3193e83b597ad8dc5f3df9ce428a4c3650ac3a543e13ec47b0cdae2fea9323a82d4559c4478c86387b5cddeca96564d9f0545aaeace38f9523c2519
6
+ metadata.gz: bc884b7e1964829d482f2db87e4c93eb35c30b2110668d0e25effdf82074f7be31f977e3f249022ba049a1165ef9a7861a593d4e0fb849a4b8ce3adb86f5208c
7
+ data.tar.gz: 5b144e62c4b99a4fc26d3015082a97bea8d775d332c4878392616ae6464c982e4e44c0096d1886dd629f94d51908266a0ead60a3e14f338d75a5157a1ccf7418
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.65.0 (2024-02-18)
4
+
5
+ * Regenerated from discovery document revision 20240206
6
+
7
+ ### v0.64.0 (2024-02-11)
8
+
9
+ * Regenerated from discovery document revision 20240130
10
+
3
11
  ### v0.63.0 (2024-01-28)
4
12
 
5
13
  * Regenerated from discovery document revision 20240112
@@ -277,9 +277,9 @@ module Google
277
277
  # @return [Google::Apis::HealthcareV1beta1::ImageAnnotation]
278
278
  attr_accessor :image_annotation
279
279
 
280
- # Resource name of the Annotation, of the form `projects/`project_id`/locations/`
281
- # location_id`/datasets/`dataset_id`/annotationStores/`annotation_store_id`/
282
- # annotations/`annotation_id``.
280
+ # Identifier. Resource name of the Annotation, of the form `projects/`project_id`
281
+ # /locations/`location_id`/datasets/`dataset_id`/annotationStores/`
282
+ # annotation_store_id`/annotations/`annotation_id``.
283
283
  # Corresponds to the JSON property `name`
284
284
  # @return [String]
285
285
  attr_accessor :name
@@ -377,8 +377,8 @@ module Google
377
377
  # @return [Hash<String,String>]
378
378
  attr_accessor :labels
379
379
 
380
- # Resource name of the Annotation store, of the form `projects/`project_id`/
381
- # locations/`location_id`/datasets/`dataset_id`/annotationStores/`
380
+ # Identifier. Resource name of the Annotation store, of the form `projects/`
381
+ # project_id`/locations/`location_id`/datasets/`dataset_id`/annotationStores/`
382
382
  # annotation_store_id``.
383
383
  # Corresponds to the JSON property `name`
384
384
  # @return [String]
@@ -839,7 +839,10 @@ module Google
839
839
  attr_accessor :members
840
840
 
841
841
  # Role that is assigned to the list of `members`, or principals. For example, `
842
- # roles/viewer`, `roles/editor`, or `roles/owner`.
842
+ # roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
843
+ # roles and permissions, see the [IAM documentation](https://cloud.google.com/
844
+ # iam/docs/roles-overview). For a list of the available pre-defined roles, see [
845
+ # here](https://cloud.google.com/iam/docs/understanding-roles).
843
846
  # Corresponds to the JSON property `role`
844
847
  # @return [String]
845
848
  attr_accessor :role
@@ -1178,9 +1181,9 @@ module Google
1178
1181
  # @return [Hash<String,String>]
1179
1182
  attr_accessor :metadata
1180
1183
 
1181
- # Resource name of the Consent, of the form `projects/`project_id`/locations/`
1182
- # location_id`/datasets/`dataset_id`/consentStores/`consent_store_id`/consents/`
1183
- # consent_id``. Cannot be changed after creation.
1184
+ # Identifier. Resource name of the Consent, of the form `projects/`project_id`/
1185
+ # locations/`location_id`/datasets/`dataset_id`/consentStores/`consent_store_id`/
1186
+ # consents/`consent_id``. Cannot be changed after creation.
1184
1187
  # Corresponds to the JSON property `name`
1185
1188
  # @return [String]
1186
1189
  attr_accessor :name
@@ -1237,6 +1240,41 @@ module Google
1237
1240
  end
1238
1241
  end
1239
1242
 
1243
+ # The accessor scope that describes who can access, for what purpose, in which
1244
+ # environment.
1245
+ class ConsentAccessorScope
1246
+ include Google::Apis::Core::Hashable
1247
+
1248
+ # An individual, group, or access role that identifies the accessor or a
1249
+ # characteristic of the accessor. This can be a resource ID (such as ``
1250
+ # resourceType`/`id``) or an external URI. This value must be present.
1251
+ # Corresponds to the JSON property `actor`
1252
+ # @return [String]
1253
+ attr_accessor :actor
1254
+
1255
+ # An abstract identifier that describes the environment or conditions under
1256
+ # which the accessor is acting. Can be “*” if it applies to all environments.
1257
+ # Corresponds to the JSON property `environment`
1258
+ # @return [String]
1259
+ attr_accessor :environment
1260
+
1261
+ # The intent of data use. Can be “*” if it applies to all purposes.
1262
+ # Corresponds to the JSON property `purpose`
1263
+ # @return [String]
1264
+ attr_accessor :purpose
1265
+
1266
+ def initialize(**args)
1267
+ update!(**args)
1268
+ end
1269
+
1270
+ # Update properties of this object
1271
+ def update!(**args)
1272
+ @actor = args[:actor] if args.key?(:actor)
1273
+ @environment = args[:environment] if args.key?(:environment)
1274
+ @purpose = args[:purpose] if args.key?(:purpose)
1275
+ end
1276
+ end
1277
+
1240
1278
  # Documentation of a user's consent.
1241
1279
  class ConsentArtifact
1242
1280
  include Google::Apis::Core::Hashable
@@ -1568,8 +1606,8 @@ module Google
1568
1606
  class Dataset
1569
1607
  include Google::Apis::Core::Hashable
1570
1608
 
1571
- # Resource name of the dataset, of the form `projects/`project_id`/locations/`
1572
- # location_id`/datasets/`dataset_id``.
1609
+ # Identifier. Resource name of the dataset, of the form `projects/`project_id`/
1610
+ # locations/`location_id`/datasets/`dataset_id``.
1573
1611
  # Corresponds to the JSON property `name`
1574
1612
  # @return [String]
1575
1613
  attr_accessor :name
@@ -2357,9 +2395,9 @@ module Google
2357
2395
  # @return [Hash<String,String>]
2358
2396
  attr_accessor :golden_info_type_mapping
2359
2397
 
2360
- # The Annotation store to use as ground truth, in the format of `projects/`
2361
- # project_id`/locations/`location_id`/datasets/`dataset_id`/annotationStores/`
2362
- # annotation_store_id``.
2398
+ # Required. The Annotation store to use as ground truth, in the format of `
2399
+ # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
2400
+ # annotationStores/`annotation_store_id``.
2363
2401
  # Corresponds to the JSON property `goldenStore`
2364
2402
  # @return [String]
2365
2403
  attr_accessor :golden_store
@@ -2486,6 +2524,138 @@ module Google
2486
2524
  end
2487
2525
  end
2488
2526
 
2527
+ # The enforcing consent's metadata.
2528
+ class ExplainDataAccessConsentInfo
2529
+ include Google::Apis::Core::Hashable
2530
+
2531
+ # The compartment base resources that matched a cascading policy. Each resource
2532
+ # has the following format: `projects/`project_id`/locations/`location_id`/
2533
+ # datasets/`dataset_id`/fhirStores/`fhir_store_id`/fhir/`resource_type`/`
2534
+ # resource_id``
2535
+ # Corresponds to the JSON property `cascadeOrigins`
2536
+ # @return [Array<String>]
2537
+ attr_accessor :cascade_origins
2538
+
2539
+ # The resource name of this consent resource. Format: `projects/`projectId`/
2540
+ # datasets/`datasetId`/fhirStores/`fhirStoreId`/fhir/`resourceType`/`id``.
2541
+ # Corresponds to the JSON property `consentResource`
2542
+ # @return [String]
2543
+ attr_accessor :consent_resource
2544
+
2545
+ # Last enforcement timestamp of this consent resource.
2546
+ # Corresponds to the JSON property `enforcementTime`
2547
+ # @return [String]
2548
+ attr_accessor :enforcement_time
2549
+
2550
+ # A list of all the matching accessor scopes of this consent policy that
2551
+ # enforced ExplainDataAccessConsentScope.accessor_scope.
2552
+ # Corresponds to the JSON property `matchingAccessorScopes`
2553
+ # @return [Array<Google::Apis::HealthcareV1beta1::ConsentAccessorScope>]
2554
+ attr_accessor :matching_accessor_scopes
2555
+
2556
+ # The patient owning the consent (only applicable for patient consents), in the
2557
+ # format: `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
2558
+ # fhirStores/`fhir_store_id`/fhir/Patient/`patient_id``
2559
+ # Corresponds to the JSON property `patientConsentOwner`
2560
+ # @return [String]
2561
+ attr_accessor :patient_consent_owner
2562
+
2563
+ # The policy type of consent resource (e.g. PATIENT, ADMIN).
2564
+ # Corresponds to the JSON property `type`
2565
+ # @return [String]
2566
+ attr_accessor :type
2567
+
2568
+ # The consent's variant combinations. A single consent may have multiple
2569
+ # variants.
2570
+ # Corresponds to the JSON property `variants`
2571
+ # @return [Array<String>]
2572
+ attr_accessor :variants
2573
+
2574
+ def initialize(**args)
2575
+ update!(**args)
2576
+ end
2577
+
2578
+ # Update properties of this object
2579
+ def update!(**args)
2580
+ @cascade_origins = args[:cascade_origins] if args.key?(:cascade_origins)
2581
+ @consent_resource = args[:consent_resource] if args.key?(:consent_resource)
2582
+ @enforcement_time = args[:enforcement_time] if args.key?(:enforcement_time)
2583
+ @matching_accessor_scopes = args[:matching_accessor_scopes] if args.key?(:matching_accessor_scopes)
2584
+ @patient_consent_owner = args[:patient_consent_owner] if args.key?(:patient_consent_owner)
2585
+ @type = args[:type] if args.key?(:type)
2586
+ @variants = args[:variants] if args.key?(:variants)
2587
+ end
2588
+ end
2589
+
2590
+ # A single consent scope that provides info on who has access to the requested
2591
+ # resource scope for a particular purpose and environment, enforced by which
2592
+ # consent.
2593
+ class ExplainDataAccessConsentScope
2594
+ include Google::Apis::Core::Hashable
2595
+
2596
+ # The accessor scope that describes who can access, for what purpose, in which
2597
+ # environment.
2598
+ # Corresponds to the JSON property `accessorScope`
2599
+ # @return [Google::Apis::HealthcareV1beta1::ConsentAccessorScope]
2600
+ attr_accessor :accessor_scope
2601
+
2602
+ # Whether the current consent scope is permitted or denied access on the
2603
+ # requested resource.
2604
+ # Corresponds to the JSON property `decision`
2605
+ # @return [String]
2606
+ attr_accessor :decision
2607
+
2608
+ # Metadata of the consent resources that enforce the consent scope's access.
2609
+ # Corresponds to the JSON property `enforcingConsents`
2610
+ # @return [Array<Google::Apis::HealthcareV1beta1::ExplainDataAccessConsentInfo>]
2611
+ attr_accessor :enforcing_consents
2612
+
2613
+ # Other consent scopes that created exceptions within this scope.
2614
+ # Corresponds to the JSON property `exceptions`
2615
+ # @return [Array<Google::Apis::HealthcareV1beta1::ExplainDataAccessConsentScope>]
2616
+ attr_accessor :exceptions
2617
+
2618
+ def initialize(**args)
2619
+ update!(**args)
2620
+ end
2621
+
2622
+ # Update properties of this object
2623
+ def update!(**args)
2624
+ @accessor_scope = args[:accessor_scope] if args.key?(:accessor_scope)
2625
+ @decision = args[:decision] if args.key?(:decision)
2626
+ @enforcing_consents = args[:enforcing_consents] if args.key?(:enforcing_consents)
2627
+ @exceptions = args[:exceptions] if args.key?(:exceptions)
2628
+ end
2629
+ end
2630
+
2631
+ # List of consent scopes that are applicable to the explained access on a given
2632
+ # resource.
2633
+ class ExplainDataAccessResponse
2634
+ include Google::Apis::Core::Hashable
2635
+
2636
+ # List of applicable consent scopes. Sorted in order of actor such that scopes
2637
+ # belonging to the same actor will be adjacent to each other in the list.
2638
+ # Corresponds to the JSON property `consentScopes`
2639
+ # @return [Array<Google::Apis::HealthcareV1beta1::ExplainDataAccessConsentScope>]
2640
+ attr_accessor :consent_scopes
2641
+
2642
+ # Warnings associated with this response. It inform user with exceeded scope
2643
+ # limit errors.
2644
+ # Corresponds to the JSON property `warning`
2645
+ # @return [String]
2646
+ attr_accessor :warning
2647
+
2648
+ def initialize(**args)
2649
+ update!(**args)
2650
+ end
2651
+
2652
+ # Update properties of this object
2653
+ def update!(**args)
2654
+ @consent_scopes = args[:consent_scopes] if args.key?(:consent_scopes)
2655
+ @warning = args[:warning] if args.key?(:warning)
2656
+ end
2657
+ end
2658
+
2489
2659
  # Request to export Annotations. The export operation is not atomic. If a
2490
2660
  # failure occurs, any annotations already exported are not removed.
2491
2661
  class ExportAnnotationsRequest
@@ -3032,11 +3202,9 @@ module Google
3032
3202
  attr_accessor :disable_resource_versioning
3033
3203
  alias_method :disable_resource_versioning?, :disable_resource_versioning
3034
3204
 
3035
- # Optional. Whether to allow the [ImportResourcesHistory] and [ExecuteBundle]
3036
- # APIs to accept history bundles, and directly insert and overwrite historical
3037
- # resource versions into the FHIR store. Importing resource histories creates
3038
- # resource interactions that have occurred in the past that clients might not
3039
- # allow. If set to false, using history bundles fail with an error.
3205
+ # Optional. Whether to allow ExecuteBundle to accept history bundles, and
3206
+ # directly insert and overwrite historical resource versions into the FHIR store.
3207
+ # If set to false, using history bundles fails with an error.
3040
3208
  # Corresponds to the JSON property `enableHistoryModifications`
3041
3209
  # @return [Boolean]
3042
3210
  attr_accessor :enable_history_modifications
@@ -4155,8 +4323,9 @@ module Google
4155
4323
  # @return [Hash<String,String>]
4156
4324
  attr_accessor :labels
4157
4325
 
4158
- # Resource name of the HL7v2 store, of the form `projects/`project_id`/locations/
4159
- # `location_id`/datasets/`dataset_id`/hl7V2Stores/`hl7v2_store_id``.
4326
+ # Identifier. Resource name of the HL7v2 store, of the form `projects/`
4327
+ # project_id`/locations/`location_id`/datasets/`dataset_id`/hl7V2Stores/`
4328
+ # hl7v2_store_id``.
4160
4329
  # Corresponds to the JSON property `name`
4161
4330
  # @return [String]
4162
4331
  attr_accessor :name
@@ -5247,7 +5416,7 @@ module Google
5247
5416
  # @return [String]
5248
5417
  attr_accessor :create_time
5249
5418
 
5250
- # Raw message bytes.
5419
+ # Required. Raw message bytes.
5251
5420
  # Corresponds to the JSON property `data`
5252
5421
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
5253
5422
  # @return [String]
@@ -5269,9 +5438,9 @@ module Google
5269
5438
  # @return [String]
5270
5439
  attr_accessor :message_type
5271
5440
 
5272
- # Resource name of the Message, of the form `projects/`project_id`/locations/`
5273
- # location_id`/datasets/`dataset_id`/hl7V2Stores/`hl7_v2_store_id`/messages/`
5274
- # message_id``. Assigned by the server.
5441
+ # Output only. Resource name of the Message, of the form `projects/`project_id`/
5442
+ # locations/`location_id`/datasets/`dataset_id`/hl7V2Stores/`hl7_v2_store_id`/
5443
+ # messages/`message_id``. Assigned by the server.
5275
5444
  # Corresponds to the JSON property `name`
5276
5445
  # @return [String]
5277
5446
  attr_accessor :name
@@ -6167,7 +6336,7 @@ module Google
6167
6336
  end
6168
6337
  end
6169
6338
 
6170
- # Final response of rollback FIHR resources request.
6339
+ # Final response of rollback FHIR resources request.
6171
6340
  class RollbackFhirResourcesResponse
6172
6341
  include Google::Apis::Core::Hashable
6173
6342
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module HealthcareV1beta1
18
18
  # Version of the google-apis-healthcare_v1beta1 gem
19
- GEM_VERSION = "0.63.0"
19
+ GEM_VERSION = "0.65.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240112"
25
+ REVISION = "20240206"
26
26
  end
27
27
  end
28
28
  end
@@ -238,6 +238,12 @@ module Google
238
238
  include Google::Apis::Core::JsonObjectSupport
239
239
  end
240
240
 
241
+ class ConsentAccessorScope
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
241
247
  class ConsentArtifact
242
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
249
 
@@ -448,6 +454,24 @@ module Google
448
454
  include Google::Apis::Core::JsonObjectSupport
449
455
  end
450
456
 
457
+ class ExplainDataAccessConsentInfo
458
+ class Representation < Google::Apis::Core::JsonRepresentation; end
459
+
460
+ include Google::Apis::Core::JsonObjectSupport
461
+ end
462
+
463
+ class ExplainDataAccessConsentScope
464
+ class Representation < Google::Apis::Core::JsonRepresentation; end
465
+
466
+ include Google::Apis::Core::JsonObjectSupport
467
+ end
468
+
469
+ class ExplainDataAccessResponse
470
+ class Representation < Google::Apis::Core::JsonRepresentation; end
471
+
472
+ include Google::Apis::Core::JsonObjectSupport
473
+ end
474
+
451
475
  class ExportAnnotationsRequest
452
476
  class Representation < Google::Apis::Core::JsonRepresentation; end
453
477
 
@@ -1646,6 +1670,15 @@ module Google
1646
1670
  end
1647
1671
  end
1648
1672
 
1673
+ class ConsentAccessorScope
1674
+ # @private
1675
+ class Representation < Google::Apis::Core::JsonRepresentation
1676
+ property :actor, as: 'actor'
1677
+ property :environment, as: 'environment'
1678
+ property :purpose, as: 'purpose'
1679
+ end
1680
+ end
1681
+
1649
1682
  class ConsentArtifact
1650
1683
  # @private
1651
1684
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1996,6 +2029,42 @@ module Google
1996
2029
  end
1997
2030
  end
1998
2031
 
2032
+ class ExplainDataAccessConsentInfo
2033
+ # @private
2034
+ class Representation < Google::Apis::Core::JsonRepresentation
2035
+ collection :cascade_origins, as: 'cascadeOrigins'
2036
+ property :consent_resource, as: 'consentResource'
2037
+ property :enforcement_time, as: 'enforcementTime'
2038
+ collection :matching_accessor_scopes, as: 'matchingAccessorScopes', class: Google::Apis::HealthcareV1beta1::ConsentAccessorScope, decorator: Google::Apis::HealthcareV1beta1::ConsentAccessorScope::Representation
2039
+
2040
+ property :patient_consent_owner, as: 'patientConsentOwner'
2041
+ property :type, as: 'type'
2042
+ collection :variants, as: 'variants'
2043
+ end
2044
+ end
2045
+
2046
+ class ExplainDataAccessConsentScope
2047
+ # @private
2048
+ class Representation < Google::Apis::Core::JsonRepresentation
2049
+ property :accessor_scope, as: 'accessorScope', class: Google::Apis::HealthcareV1beta1::ConsentAccessorScope, decorator: Google::Apis::HealthcareV1beta1::ConsentAccessorScope::Representation
2050
+
2051
+ property :decision, as: 'decision'
2052
+ collection :enforcing_consents, as: 'enforcingConsents', class: Google::Apis::HealthcareV1beta1::ExplainDataAccessConsentInfo, decorator: Google::Apis::HealthcareV1beta1::ExplainDataAccessConsentInfo::Representation
2053
+
2054
+ collection :exceptions, as: 'exceptions', class: Google::Apis::HealthcareV1beta1::ExplainDataAccessConsentScope, decorator: Google::Apis::HealthcareV1beta1::ExplainDataAccessConsentScope::Representation
2055
+
2056
+ end
2057
+ end
2058
+
2059
+ class ExplainDataAccessResponse
2060
+ # @private
2061
+ class Representation < Google::Apis::Core::JsonRepresentation
2062
+ collection :consent_scopes, as: 'consentScopes', class: Google::Apis::HealthcareV1beta1::ExplainDataAccessConsentScope, decorator: Google::Apis::HealthcareV1beta1::ExplainDataAccessConsentScope::Representation
2063
+
2064
+ property :warning, as: 'warning'
2065
+ end
2066
+ end
2067
+
1999
2068
  class ExportAnnotationsRequest
2000
2069
  # @private
2001
2070
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -128,12 +128,12 @@ module Google
128
128
  # interface which returns either an `Operation.response` which contains a
129
129
  # Dataset or `Operation.error`. The metadata field type is OperationMetadata.
130
130
  # @param [String] parent
131
- # The name of the project where the server creates the dataset. For example, `
132
- # projects/`project_id`/locations/`location_id``.
131
+ # Required. The name of the project where the server creates the dataset. For
132
+ # example, `projects/`project_id`/locations/`location_id``.
133
133
  # @param [Google::Apis::HealthcareV1beta1::Dataset] dataset_object
134
134
  # @param [String] dataset_id
135
- # The ID of the dataset that is being created. The string must match the
136
- # following regex: `[\p`L`\p`N`_\-\.]`1,256``.
135
+ # Required. The ID of the dataset that is being created. The string must match
136
+ # the following regex: `[\p`L`\p`N`_\-\.]`1,256``.
137
137
  # @param [String] fields
138
138
  # Selector specifying which fields to include in a partial response.
139
139
  # @param [String] quota_user
@@ -209,8 +209,8 @@ module Google
209
209
  # Deleting a dataset does not affect the sources from which the dataset was
210
210
  # imported (if any).
211
211
  # @param [String] name
212
- # The name of the dataset to delete. For example, `projects/`project_id`/
213
- # locations/`location_id`/datasets/`dataset_id``.
212
+ # Required. The name of the dataset to delete. For example, `projects/`
213
+ # project_id`/locations/`location_id`/datasets/`dataset_id``.
214
214
  # @param [String] fields
215
215
  # Selector specifying which fields to include in a partial response.
216
216
  # @param [String] quota_user
@@ -240,8 +240,8 @@ module Google
240
240
 
241
241
  # Gets any metadata associated with a dataset.
242
242
  # @param [String] name
243
- # The name of the dataset to read. For example, `projects/`project_id`/locations/
244
- # `location_id`/datasets/`dataset_id``.
243
+ # Required. The name of the dataset to read. For example, `projects/`project_id`/
244
+ # locations/`location_id`/datasets/`dataset_id``.
245
245
  # @param [String] fields
246
246
  # Selector specifying which fields to include in a partial response.
247
247
  # @param [String] quota_user
@@ -316,8 +316,8 @@ module Google
316
316
 
317
317
  # Lists the health datasets in the current project.
318
318
  # @param [String] parent
319
- # The name of the project whose datasets should be listed. For example, `
320
- # projects/`project_id`/locations/`location_id``.
319
+ # Required. The name of the project whose datasets should be listed. For example,
320
+ # `projects/`project_id`/locations/`location_id``.
321
321
  # @param [Fixnum] page_size
322
322
  # The maximum number of items to return. If not specified, 100 is used. May not
323
323
  # be larger than 1000.
@@ -354,13 +354,13 @@ module Google
354
354
 
355
355
  # Updates dataset metadata.
356
356
  # @param [String] name
357
- # Resource name of the dataset, of the form `projects/`project_id`/locations/`
358
- # location_id`/datasets/`dataset_id``.
357
+ # Identifier. Resource name of the dataset, of the form `projects/`project_id`/
358
+ # locations/`location_id`/datasets/`dataset_id``.
359
359
  # @param [Google::Apis::HealthcareV1beta1::Dataset] dataset_object
360
360
  # @param [String] update_mask
361
- # The update mask applies to the resource. For the `FieldMask` definition, see
362
- # https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#
363
- # fieldmask
361
+ # Required. The update mask applies to the resource. For the `FieldMask`
362
+ # definition, see https://developers.google.com/protocol-buffers/docs/reference/
363
+ # google.protobuf#fieldmask
364
364
  # @param [String] fields
365
365
  # Selector specifying which fields to include in a partial response.
366
366
  # @param [String] quota_user
@@ -469,11 +469,11 @@ module Google
469
469
 
470
470
  # Creates a new Annotation store within the parent dataset.
471
471
  # @param [String] parent
472
- # The name of the dataset this Annotation store belongs to.
472
+ # Required. The name of the dataset this Annotation store belongs to.
473
473
  # @param [Google::Apis::HealthcareV1beta1::AnnotationStore] annotation_store_object
474
474
  # @param [String] annotation_store_id
475
- # The ID of the Annotation store that is being created. The string must match
476
- # the following regex: `[\p`L`\p`N`_\-\.]`1,256``.
475
+ # Required. The ID of the Annotation store that is being created. The string
476
+ # must match the following regex: `[\p`L`\p`N`_\-\.]`1,256``.
477
477
  # @param [String] fields
478
478
  # Selector specifying which fields to include in a partial response.
479
479
  # @param [String] quota_user
@@ -507,7 +507,7 @@ module Google
507
507
  # Deletes the specified Annotation store and removes all annotations that are
508
508
  # contained within it.
509
509
  # @param [String] name
510
- # The resource name of the Annotation store to delete.
510
+ # Required. The resource name of the Annotation store to delete.
511
511
  # @param [String] fields
512
512
  # Selector specifying which fields to include in a partial response.
513
513
  # @param [String] quota_user
@@ -542,8 +542,8 @@ module Google
542
542
  # error logs in Cloud Logging](https://cloud.google.com/healthcare/docs/how-tos/
543
543
  # logging)).
544
544
  # @param [String] name
545
- # The Annotation store to compare against `golden_store`, in the format of `
546
- # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
545
+ # Required. The Annotation store to compare against `golden_store`, in the
546
+ # format of `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
547
547
  # annotationStores/`annotation_store_id``.
548
548
  # @param [Google::Apis::HealthcareV1beta1::EvaluateAnnotationStoreRequest] evaluate_annotation_store_request_object
549
549
  # @param [String] fields
@@ -581,8 +581,8 @@ module Google
581
581
  # OperationMetadata. Errors are logged to Cloud Logging (see [Viewing error logs
582
582
  # in Cloud Logging](https://cloud.google.com/healthcare/docs/how-tos/logging)).
583
583
  # @param [String] name
584
- # The name of the Annotation store to export annotations to, in the format of `
585
- # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
584
+ # Required. The name of the Annotation store to export annotations to, in the
585
+ # format of `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
586
586
  # annotationStores/`annotation_store_id``.
587
587
  # @param [Google::Apis::HealthcareV1beta1::ExportAnnotationsRequest] export_annotations_request_object
588
588
  # @param [String] fields
@@ -616,7 +616,7 @@ module Google
616
616
 
617
617
  # Gets the specified Annotation store or returns NOT_FOUND if it does not exist.
618
618
  # @param [String] name
619
- # The resource name of the Annotation store to get.
619
+ # Required. The resource name of the Annotation store to get.
620
620
  # @param [String] fields
621
621
  # Selector specifying which fields to include in a partial response.
622
622
  # @param [String] quota_user
@@ -696,9 +696,9 @@ module Google
696
696
  # logged to Cloud Logging (see [Viewing error logs in Cloud Logging](https://
697
697
  # cloud.google.com/healthcare/docs/how-tos/logging)).
698
698
  # @param [String] name
699
- # The name of the Annotation store to which the server imports annotations, in
700
- # the format `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`
701
- # /annotationStores/`annotation_store_id``.
699
+ # Required. The name of the Annotation store to which the server imports
700
+ # annotations, in the format `projects/`project_id`/locations/`location_id`/
701
+ # datasets/`dataset_id`/annotationStores/`annotation_store_id``.
702
702
  # @param [Google::Apis::HealthcareV1beta1::ImportAnnotationsRequest] import_annotations_request_object
703
703
  # @param [String] fields
704
704
  # Selector specifying which fields to include in a partial response.
@@ -731,7 +731,7 @@ module Google
731
731
 
732
732
  # Lists the Annotation stores in the given dataset for a source store.
733
733
  # @param [String] parent
734
- # Name of the dataset.
734
+ # Required. Name of the dataset.
735
735
  # @param [String] filter
736
736
  # Restricts stores returned to those matching a filter. The following syntax is
737
737
  # available: * A string field value can be written as text inside quotation
@@ -792,14 +792,14 @@ module Google
792
792
 
793
793
  # Updates the specified Annotation store.
794
794
  # @param [String] name
795
- # Resource name of the Annotation store, of the form `projects/`project_id`/
796
- # locations/`location_id`/datasets/`dataset_id`/annotationStores/`
795
+ # Identifier. Resource name of the Annotation store, of the form `projects/`
796
+ # project_id`/locations/`location_id`/datasets/`dataset_id`/annotationStores/`
797
797
  # annotation_store_id``.
798
798
  # @param [Google::Apis::HealthcareV1beta1::AnnotationStore] annotation_store_object
799
799
  # @param [String] update_mask
800
- # The update mask applies to the resource. For the `FieldMask` definition, see
801
- # https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#
802
- # fieldmask
800
+ # Required. The update mask applies to the resource. For the `FieldMask`
801
+ # definition, see https://developers.google.com/protocol-buffers/docs/reference/
802
+ # google.protobuf#fieldmask
803
803
  # @param [String] fields
804
804
  # Selector specifying which fields to include in a partial response.
805
805
  # @param [String] quota_user
@@ -910,9 +910,9 @@ module Google
910
910
  # the same source more than once since a unique ID is assigned to each record by
911
911
  # this service.
912
912
  # @param [String] parent
913
- # The name of the Annotation store this annotation belongs to. For example, `
914
- # projects/my-project/locations/us-central1/datasets/mydataset/annotationStores/
915
- # myannotationstore`.
913
+ # Required. The name of the Annotation store this annotation belongs to. For
914
+ # example, `projects/my-project/locations/us-central1/datasets/mydataset/
915
+ # annotationStores/myannotationstore`.
916
916
  # @param [Google::Apis::HealthcareV1beta1::Annotation] annotation_object
917
917
  # @param [String] fields
918
918
  # Selector specifying which fields to include in a partial response.
@@ -945,7 +945,7 @@ module Google
945
945
 
946
946
  # Deletes an Annotation or returns NOT_FOUND if it does not exist.
947
947
  # @param [String] name
948
- # The resource name of the Annotation to delete.
948
+ # Required. The resource name of the Annotation to delete.
949
949
  # @param [String] fields
950
950
  # Selector specifying which fields to include in a partial response.
951
951
  # @param [String] quota_user
@@ -975,7 +975,7 @@ module Google
975
975
 
976
976
  # Gets an Annotation.
977
977
  # @param [String] name
978
- # The resource name of the Annotation to retrieve.
978
+ # Required. The resource name of the Annotation to retrieve.
979
979
  # @param [String] fields
980
980
  # Selector specifying which fields to include in a partial response.
981
981
  # @param [String] quota_user
@@ -1005,7 +1005,7 @@ module Google
1005
1005
 
1006
1006
  # Lists the Annotations in the given Annotation store for a source resource.
1007
1007
  # @param [String] parent
1008
- # Name of the Annotation store to retrieve Annotations from.
1008
+ # Required. Name of the Annotation store to retrieve Annotations from.
1009
1009
  # @param [String] filter
1010
1010
  # Restricts Annotations returned to those matching a filter. Functions available
1011
1011
  # for filtering are: - `matches("annotation_source.cloud_healthcare_source.name",
@@ -1054,14 +1054,14 @@ module Google
1054
1054
 
1055
1055
  # Updates the Annotation.
1056
1056
  # @param [String] name
1057
- # Resource name of the Annotation, of the form `projects/`project_id`/locations/`
1058
- # location_id`/datasets/`dataset_id`/annotationStores/`annotation_store_id`/
1059
- # annotations/`annotation_id``.
1057
+ # Identifier. Resource name of the Annotation, of the form `projects/`project_id`
1058
+ # /locations/`location_id`/datasets/`dataset_id`/annotationStores/`
1059
+ # annotation_store_id`/annotations/`annotation_id``.
1060
1060
  # @param [Google::Apis::HealthcareV1beta1::Annotation] annotation_object
1061
1061
  # @param [String] update_mask
1062
- # The update mask applies to the resource. For the `FieldMask` definition, see
1063
- # https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#
1064
- # fieldmask
1062
+ # Required. The update mask applies to the resource. For the `FieldMask`
1063
+ # definition, see https://developers.google.com/protocol-buffers/docs/reference/
1064
+ # google.protobuf#fieldmask
1065
1065
  # @param [String] fields
1066
1066
  # Selector specifying which fields to include in a partial response.
1067
1067
  # @param [String] quota_user
@@ -2223,9 +2223,9 @@ module Google
2223
2223
  # revision with the changes. A FAILED_PRECONDITION error occurs if the latest
2224
2224
  # revision of the specified Consent is in the `REJECTED` or `REVOKED` state.
2225
2225
  # @param [String] name
2226
- # Resource name of the Consent, of the form `projects/`project_id`/locations/`
2227
- # location_id`/datasets/`dataset_id`/consentStores/`consent_store_id`/consents/`
2228
- # consent_id``. Cannot be changed after creation.
2226
+ # Identifier. Resource name of the Consent, of the form `projects/`project_id`/
2227
+ # locations/`location_id`/datasets/`dataset_id`/consentStores/`consent_store_id`/
2228
+ # consents/`consent_id``. Cannot be changed after creation.
2229
2229
  # @param [Google::Apis::HealthcareV1beta1::Consent] consent_object
2230
2230
  # @param [String] update_mask
2231
2231
  # Required. The update mask to apply to the resource. For the `FieldMask`
@@ -4375,6 +4375,43 @@ module Google
4375
4375
  execute_or_queue_command(command, &block)
4376
4376
  end
4377
4377
 
4378
+ # Explains all the permitted/denied actor, purpose and environment for a given
4379
+ # resource.
4380
+ # @param [String] name
4381
+ # Required. The name of the FHIR store to enforce, in the format `projects/`
4382
+ # project_id`/locations/`location_id`/datasets/`dataset_id`/fhirStores/`
4383
+ # fhir_store_id``.
4384
+ # @param [String] resource_id
4385
+ # Required. The ID (``resourceType`/`id``) of the resource to explain data
4386
+ # access on.
4387
+ # @param [String] fields
4388
+ # Selector specifying which fields to include in a partial response.
4389
+ # @param [String] quota_user
4390
+ # Available to use for quota purposes for server-side applications. Can be any
4391
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4392
+ # @param [Google::Apis::RequestOptions] options
4393
+ # Request-specific options
4394
+ #
4395
+ # @yield [result, err] Result & error if block supplied
4396
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::ExplainDataAccessResponse] parsed result object
4397
+ # @yieldparam err [StandardError] error object if request failed
4398
+ #
4399
+ # @return [Google::Apis::HealthcareV1beta1::ExplainDataAccessResponse]
4400
+ #
4401
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4402
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4403
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4404
+ def explain_project_location_dataset_fhir_store_data_access(name, resource_id: nil, fields: nil, quota_user: nil, options: nil, &block)
4405
+ command = make_simple_command(:get, 'v1beta1/{+name}:explainDataAccess', options)
4406
+ command.response_representation = Google::Apis::HealthcareV1beta1::ExplainDataAccessResponse::Representation
4407
+ command.response_class = Google::Apis::HealthcareV1beta1::ExplainDataAccessResponse
4408
+ command.params['name'] = name unless name.nil?
4409
+ command.query['resourceId'] = resource_id unless resource_id.nil?
4410
+ command.query['fields'] = fields unless fields.nil?
4411
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4412
+ execute_or_queue_command(command, &block)
4413
+ end
4414
+
4378
4415
  # Export resources from the FHIR store to the specified destination. This method
4379
4416
  # returns an Operation that can be used to track the status of the export by
4380
4417
  # calling GetOperation. Immediate fatal errors appear in the error field, errors
@@ -5648,38 +5685,39 @@ module Google
5648
5685
  end
5649
5686
 
5650
5687
  # Executes all the requests in the given Bundle. Implements the FHIR standard
5651
- # batch/transaction interaction ([DSTU2](https://hl7.org/implement/standards/
5652
- # fhir/DSTU2/http.html#transaction), [STU3](https://hl7.org/implement/standards/
5653
- # fhir/STU3/http.html#transaction), [R4](https://hl7.org/implement/standards/
5654
- # fhir/R4/http.html#transaction)). Supports all interactions within a bundle,
5655
- # except search. This method accepts Bundles of type `batch` and `transaction`,
5656
- # processing them according to the batch processing rules ([DSTU2](https://hl7.
5657
- # org/implement/standards/fhir/DSTU2/http.html#2.1.0.16.1), [STU3](https://hl7.
5658
- # org/implement/standards/fhir/STU3/http.html#2.21.0.17.1), [R4](https://hl7.org/
5659
- # implement/standards/fhir/R4/http.html#brules)) and transaction processing
5660
- # rules ([DSTU2](https://hl7.org/implement/standards/fhir/DSTU2/http.html#2.1.0.
5661
- # 16.2), [STU3](https://hl7.org/implement/standards/fhir/STU3/http.html#2.21.0.
5662
- # 17.2), [R4](https://hl7.org/implement/standards/fhir/R4/http.html#trules)).
5663
- # The request body must contain a JSON-encoded FHIR `Bundle` resource, and the
5664
- # request headers must contain `Content-Type: application/fhir+json`. For a
5665
- # batch bundle or a successful transaction, the response body contains a JSON-
5666
- # encoded representation of a `Bundle` resource of type `batch-response` or `
5667
- # transaction-response` containing one entry for each entry in the request, with
5668
- # the outcome of processing the entry. In the case of an error for a transaction
5669
- # bundle, the response body contains a JSON-encoded `OperationOutcome` resource
5670
- # describing the reason for the error. If the request cannot be mapped to a
5671
- # valid API method on a FHIR store, a generic GCP error might be returned
5688
+ # batch/transaction interaction and history operations. ([DSTU2](https://hl7.org/
5689
+ # implement/standards/fhir/DSTU2/http.html#transaction), [STU3](https://hl7.org/
5690
+ # implement/standards/fhir/STU3/http.html#transaction), [R4](https://hl7.org/
5691
+ # implement/standards/fhir/R4/http.html#transaction)). Supports all interactions
5692
+ # within a bundle, except search. This method accepts Bundles of type `batch`, `
5693
+ # transaction` and `history`, processing `batch` and `transaction` bundles
5694
+ # according to the batch processing rules ([DSTU2](https://hl7.org/implement/
5695
+ # standards/fhir/DSTU2/http.html#2.1.0.16.1), [STU3](https://hl7.org/implement/
5696
+ # standards/fhir/STU3/http.html#2.21.0.17.1), [R4](https://hl7.org/implement/
5697
+ # standards/fhir/R4/http.html#brules)) and transaction processing rules ([DSTU2](
5698
+ # https://hl7.org/implement/standards/fhir/DSTU2/http.html#2.1.0.16.2), [STU3](
5699
+ # https://hl7.org/implement/standards/fhir/STU3/http.html#2.21.0.17.2), [R4](
5700
+ # https://hl7.org/implement/standards/fhir/R4/http.html#trules)). The request
5701
+ # body must contain a JSON-encoded FHIR `Bundle` resource, and the request
5702
+ # headers must contain `Content-Type: application/fhir+json`. For a batch bundle
5703
+ # or a successful transaction, the response body contains a JSON-encoded
5704
+ # representation of a `Bundle` resource of type `batch-response` or `transaction-
5705
+ # response` containing one entry for each entry in the request, with the outcome
5706
+ # of processing the entry. In the case of an error for a `transaction` or `
5707
+ # history` bundle, the response body contains a JSON-encoded `OperationOutcome`
5708
+ # resource describing the reason for the error. If the request cannot be mapped
5709
+ # to a valid API method on a FHIR store, a generic GCP error might be returned
5672
5710
  # instead. This method checks permissions for each request in the bundle. The `
5673
5711
  # executeBundle` permission is required to call this method, but you must also
5674
5712
  # grant sufficient permissions to execute the individual requests in the bundle.
5675
5713
  # For example, if the bundle contains a request to create a FHIR resource, the
5676
5714
  # caller must also have been granted the `healthcare.fhirResources.create`
5677
- # permission. You can use audit logs to view the permissions for `executeBundle`
5678
- # and each request in the bundle. For more information, see [Viewing Cloud Audit
5679
- # logs](https://cloud.google.com/healthcare-api/docs/how-tos/audit-logging). For
5680
- # samples that show how to call `executeBundle`, see [Managing FHIR resources
5681
- # using FHIR bundles](https://cloud.google.com/healthcare/docs/how-tos/fhir-
5682
- # bundles).
5715
+ # permission. `history` bundles also check the `import` permission. You can use
5716
+ # audit logs to view the permissions for `executeBundle` and each request in the
5717
+ # bundle. For more information, see [Viewing Cloud Audit logs](https://cloud.
5718
+ # google.com/healthcare-api/docs/how-tos/audit-logging). For samples that show
5719
+ # how to call `executeBundle`, see [Managing FHIR resources using FHIR bundles](
5720
+ # https://cloud.google.com/healthcare/docs/how-tos/fhir-bundles).
5683
5721
  # @param [String] parent
5684
5722
  # Required. Name of the FHIR store in which this bundle will be executed.
5685
5723
  # @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
@@ -6162,11 +6200,11 @@ module Google
6162
6200
 
6163
6201
  # Creates a new HL7v2 store within the parent dataset.
6164
6202
  # @param [String] parent
6165
- # The name of the dataset this HL7v2 store belongs to.
6203
+ # Required. The name of the dataset this HL7v2 store belongs to.
6166
6204
  # @param [Google::Apis::HealthcareV1beta1::Hl7V2Store] hl7_v2_store_object
6167
6205
  # @param [String] hl7_v2_store_id
6168
- # The ID of the HL7v2 store that is being created. The string must match the
6169
- # following regex: `[\p`L`\p`N`_\-\.]`1,256``.
6206
+ # Required. The ID of the HL7v2 store that is being created. The string must
6207
+ # match the following regex: `[\p`L`\p`N`_\-\.]`1,256``.
6170
6208
  # @param [String] fields
6171
6209
  # Selector specifying which fields to include in a partial response.
6172
6210
  # @param [String] quota_user
@@ -6199,7 +6237,7 @@ module Google
6199
6237
 
6200
6238
  # Deletes the specified HL7v2 store and removes all messages that it contains.
6201
6239
  # @param [String] name
6202
- # The resource name of the HL7v2 store to delete.
6240
+ # Required. The resource name of the HL7v2 store to delete.
6203
6241
  # @param [String] fields
6204
6242
  # Selector specifying which fields to include in a partial response.
6205
6243
  # @param [String] quota_user
@@ -6235,8 +6273,9 @@ module Google
6235
6273
  # response of type ExportMessagesResponse is returned in the response field. The
6236
6274
  # metadata field type for this operation is OperationMetadata.
6237
6275
  # @param [String] name
6238
- # The name of the source HL7v2 store, in the format `projects/`project_id`/
6239
- # locations/`location_id`/datasets/`dataset_id`/hl7v2Stores/`hl7v2_store_id``
6276
+ # Required. The name of the source HL7v2 store, in the format `projects/`
6277
+ # project_id`/locations/`location_id`/datasets/`dataset_id`/hl7v2Stores/`
6278
+ # hl7v2_store_id``
6240
6279
  # @param [Google::Apis::HealthcareV1beta1::ExportMessagesRequest] export_messages_request_object
6241
6280
  # @param [String] fields
6242
6281
  # Selector specifying which fields to include in a partial response.
@@ -6269,7 +6308,7 @@ module Google
6269
6308
 
6270
6309
  # Gets the specified HL7v2 store.
6271
6310
  # @param [String] name
6272
- # The resource name of the HL7v2 store to get.
6311
+ # Required. The resource name of the HL7v2 store to get.
6273
6312
  # @param [String] fields
6274
6313
  # Selector specifying which fields to include in a partial response.
6275
6314
  # @param [String] quota_user
@@ -6299,8 +6338,8 @@ module Google
6299
6338
 
6300
6339
  # Gets metrics associated with the HL7v2 store.
6301
6340
  # @param [String] name
6302
- # The resource name of the HL7v2 store to get metrics for, in the format `
6303
- # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
6341
+ # Required. The resource name of the HL7v2 store to get metrics for, in the
6342
+ # format `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
6304
6343
  # hl7V2Stores/`hl7v2_store_id``.
6305
6344
  # @param [String] fields
6306
6345
  # Selector specifying which fields to include in a partial response.
@@ -6399,8 +6438,9 @@ module Google
6399
6438
  # the response field. The metadata field type for this operation is
6400
6439
  # OperationMetadata.
6401
6440
  # @param [String] name
6402
- # The name of the target HL7v2 store, in the format `projects/`project_id`/
6403
- # locations/`location_id`/datasets/`dataset_id`/hl7v2Stores/`hl7v2_store_id``
6441
+ # Required. The name of the target HL7v2 store, in the format `projects/`
6442
+ # project_id`/locations/`location_id`/datasets/`dataset_id`/hl7v2Stores/`
6443
+ # hl7v2_store_id``
6404
6444
  # @param [Google::Apis::HealthcareV1beta1::ImportMessagesRequest] import_messages_request_object
6405
6445
  # @param [String] fields
6406
6446
  # Selector specifying which fields to include in a partial response.
@@ -6433,7 +6473,7 @@ module Google
6433
6473
 
6434
6474
  # Lists the HL7v2 stores in the given dataset.
6435
6475
  # @param [String] parent
6436
- # Name of the dataset.
6476
+ # Required. Name of the dataset.
6437
6477
  # @param [String] filter
6438
6478
  # Restricts stores returned to those matching a filter. The following syntax is
6439
6479
  # available: * A string field value can be written as text inside quotation
@@ -6494,13 +6534,14 @@ module Google
6494
6534
 
6495
6535
  # Updates the HL7v2 store.
6496
6536
  # @param [String] name
6497
- # Resource name of the HL7v2 store, of the form `projects/`project_id`/locations/
6498
- # `location_id`/datasets/`dataset_id`/hl7V2Stores/`hl7v2_store_id``.
6537
+ # Identifier. Resource name of the HL7v2 store, of the form `projects/`
6538
+ # project_id`/locations/`location_id`/datasets/`dataset_id`/hl7V2Stores/`
6539
+ # hl7v2_store_id``.
6499
6540
  # @param [Google::Apis::HealthcareV1beta1::Hl7V2Store] hl7_v2_store_object
6500
6541
  # @param [String] update_mask
6501
- # The update mask applies to the resource. For the `FieldMask` definition, see
6502
- # https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#
6503
- # fieldmask
6542
+ # Required. The update mask applies to the resource. For the `FieldMask`
6543
+ # definition, see https://developers.google.com/protocol-buffers/docs/reference/
6544
+ # google.protobuf#fieldmask
6504
6545
  # @param [String] fields
6505
6546
  # Selector specifying which fields to include in a partial response.
6506
6547
  # @param [String] quota_user
@@ -6609,9 +6650,9 @@ module Google
6609
6650
 
6610
6651
  # Gets multiple messages in the given HL7v2 store.
6611
6652
  # @param [String] parent
6612
- # Name of the HL7v2 store to retrieve messages from, in the format: `projects/`
6613
- # project_id`/locations/`location_id`/datasets/`dataset_id`/hl7v2Stores/`
6614
- # hl7v2_store_id``.
6653
+ # Required. Name of the HL7v2 store to retrieve messages from, in the format: `
6654
+ # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
6655
+ # hl7v2Stores/`hl7v2_store_id``.
6615
6656
  # @param [Array<String>, String] ids
6616
6657
  # The resource id of the HL7v2 messages to retrieve in the format: ``message_id``
6617
6658
  # , where the full resource name is ``parent`/messages/`message_id`` A maximum
@@ -6654,7 +6695,7 @@ module Google
6654
6695
  # adapter is configured to listen to a Pub/Sub topic, the adapter transmits the
6655
6696
  # message when a notification is received.
6656
6697
  # @param [String] parent
6657
- # The name of the HL7v2 store this message belongs to.
6698
+ # Required. The name of the HL7v2 store this message belongs to.
6658
6699
  # @param [Google::Apis::HealthcareV1beta1::CreateMessageRequest] create_message_request_object
6659
6700
  # @param [String] fields
6660
6701
  # Selector specifying which fields to include in a partial response.
@@ -6687,7 +6728,7 @@ module Google
6687
6728
 
6688
6729
  # Deletes an HL7v2 message.
6689
6730
  # @param [String] name
6690
- # The resource name of the HL7v2 message to delete.
6731
+ # Required. The resource name of the HL7v2 message to delete.
6691
6732
  # @param [String] fields
6692
6733
  # Selector specifying which fields to include in a partial response.
6693
6734
  # @param [String] quota_user
@@ -6717,7 +6758,7 @@ module Google
6717
6758
 
6718
6759
  # Gets an HL7v2 message.
6719
6760
  # @param [String] name
6720
- # The resource name of the HL7v2 message to retrieve.
6761
+ # Required. The resource name of the HL7v2 message to retrieve.
6721
6762
  # @param [String] view
6722
6763
  # Specifies which parts of the Message resource to return in the response. When
6723
6764
  # unspecified, equivalent to FULL.
@@ -6759,7 +6800,7 @@ module Google
6759
6800
  # message. This behavior is suitable for replying to HL7v2 interface systems
6760
6801
  # that expect these acknowledgments.
6761
6802
  # @param [String] parent
6762
- # The name of the HL7v2 store this message belongs to.
6803
+ # Required. The name of the HL7v2 store this message belongs to.
6763
6804
  # @param [Google::Apis::HealthcareV1beta1::IngestMessageRequest] ingest_message_request_object
6764
6805
  # @param [String] fields
6765
6806
  # Selector specifying which fields to include in a partial response.
@@ -6795,7 +6836,7 @@ module Google
6795
6836
  # delay between the time a message is created and when it can be found through a
6796
6837
  # filter.
6797
6838
  # @param [String] parent
6798
- # Name of the HL7v2 store to retrieve messages from.
6839
+ # Required. Name of the HL7v2 store to retrieve messages from.
6799
6840
  # @param [String] filter
6800
6841
  # Restricts messages returned to those matching a filter. The following syntax
6801
6842
  # is available: * A string field value can be written as text inside quotation
@@ -6886,14 +6927,14 @@ module Google
6886
6927
  # are merged with the existing set of labels. Existing labels with the same keys
6887
6928
  # are updated.
6888
6929
  # @param [String] name
6889
- # Resource name of the Message, of the form `projects/`project_id`/locations/`
6890
- # location_id`/datasets/`dataset_id`/hl7V2Stores/`hl7_v2_store_id`/messages/`
6891
- # message_id``. Assigned by the server.
6930
+ # Output only. Resource name of the Message, of the form `projects/`project_id`/
6931
+ # locations/`location_id`/datasets/`dataset_id`/hl7V2Stores/`hl7_v2_store_id`/
6932
+ # messages/`message_id``. Assigned by the server.
6892
6933
  # @param [Google::Apis::HealthcareV1beta1::Message] message_object
6893
6934
  # @param [String] update_mask
6894
- # The update mask applies to the resource. For the `FieldMask` definition, see
6895
- # https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#
6896
- # fieldmask
6935
+ # Required. The update mask applies to the resource. For the `FieldMask`
6936
+ # definition, see https://developers.google.com/protocol-buffers/docs/reference/
6937
+ # google.protobuf#fieldmask
6897
6938
  # @param [String] fields
6898
6939
  # Selector specifying which fields to include in a partial response.
6899
6940
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-healthcare_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.63.0
4
+ version: 0.65.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-28 00:00:00.000000000 Z
11
+ date: 2024-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.63.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.65.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []