google-apis-healthcare_v1beta1 0.27.0 → 0.30.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: 373fdd6442ab86f5ed83f012d5a06947b0eef76652b47f91109eea073de626ec
4
- data.tar.gz: f00375dbd3a940b3af32a697c5e8323caff198c5d547d33359ccc6a284901855
3
+ metadata.gz: 3842950a1ee364db88b9497f28ec9bb3bda6a8bae02cda355e75a1ddfb223cf9
4
+ data.tar.gz: 693589c2f4d59522d3ddc038c16d71dab3c924a25aa2b1904d2e4dea152a2da7
5
5
  SHA512:
6
- metadata.gz: 9b9b6925d78438bce57d840fcec0f84fcb0683f404cd383dd9c1369551574d3390d28b1c35b0ddae0c135cfd08c746958ea1d13a788454c16a8f2394901aa22f
7
- data.tar.gz: 7ba9ff199c916a716cbb26bdc7caae6b03b59c6aae4caa290ab2688c715c3d24cb8c7a5725960cb20a792a7bec5ca3ce3aaf3e2061d992276537df8e7d083fca
6
+ metadata.gz: 946e76b84ec602d773efd5be7427bdb847d7cefbb66547f73e4db861ea9f7170dfff1fea010807503c736f749ff71345e8ef2783e83bfe306be1b18cf7e12191
7
+ data.tar.gz: 639bd4c921bfd9cbe765ec8f4de3a72976fb7a536535971be842b603d352af48b3c7fd6adc5d4a9a56762c14ab22efa5a8ca0255adeb8f0e768ca3111adf38a8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.30.0 (2022-06-10)
4
+
5
+ * Regenerated from discovery document revision 20220531
6
+ * Regenerated using generator version 0.5.0
7
+
8
+ ### v0.29.0 (2022-05-25)
9
+
10
+ * Regenerated from discovery document revision 20220512
11
+
12
+ ### v0.28.0 (2022-05-12)
13
+
14
+ * Regenerated from discovery document revision 20220428
15
+
3
16
  ### v0.27.0 (2022-04-27)
4
17
 
5
18
  * Regenerated from discovery document revision 20220413
@@ -386,8 +386,8 @@ module Google
386
386
  # "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
387
387
  # , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
388
388
  # this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
389
- # exempts jose@example.com from DATA_READ logging, and aliya@example.com from
390
- # DATA_WRITE logging.
389
+ # exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
390
+ # from DATA_WRITE logging.
391
391
  class AuditConfig
392
392
  include Google::Apis::Core::Hashable
393
393
 
@@ -2065,6 +2065,51 @@ module Google
2065
2065
  end
2066
2066
  end
2067
2067
 
2068
+ # Contains the configuration for FHIR notifications.
2069
+ class FhirNotificationConfig
2070
+ include Google::Apis::Core::Hashable
2071
+
2072
+ # The [Pub/Sub](https://cloud.google.com/pubsub/docs/) topic that notifications
2073
+ # of changes are published on. Supplied by the client. The notification is a `
2074
+ # PubsubMessage` with the following fields: * `PubsubMessage.Data` contains the
2075
+ # resource name. * `PubsubMessage.MessageId` is the ID of this notification. It
2076
+ # is guaranteed to be unique within the topic. * `PubsubMessage.PublishTime` is
2077
+ # the time when the message was published. Note that notifications are only sent
2078
+ # if the topic is non-empty. [Topic names](https://cloud.google.com/pubsub/docs/
2079
+ # overview#names) must be scoped to a project. The Cloud Healthcare API service
2080
+ # account, service-@gcp-sa-healthcare.iam.gserviceaccount.com, must have
2081
+ # publisher permissions on the given Pub/Sub topic. Not having adequate
2082
+ # permissions causes the calls that send notifications to fail. If a
2083
+ # notification can't be published to Pub/Sub, errors are logged to Cloud Logging.
2084
+ # For more information, see [Viewing error logs in Cloud Logging](https://cloud.
2085
+ # google.com/healthcare-api/docs/how-tos/logging).
2086
+ # Corresponds to the JSON property `pubsubTopic`
2087
+ # @return [String]
2088
+ attr_accessor :pubsub_topic
2089
+
2090
+ # Whether to send full FHIR resource to this Pub/Sub topic for Create and Update
2091
+ # operation. Note that setting this to true does not guarantee that all
2092
+ # resources will be sent in the format of full FHIR resource. When a resource
2093
+ # change is too large or during heavy traffic, only the resource name will be
2094
+ # sent. Clients should always check the "payloadType" label from a Pub/Sub
2095
+ # message to determine whether it needs to fetch the full resource as a separate
2096
+ # operation.
2097
+ # Corresponds to the JSON property `sendFullResource`
2098
+ # @return [Boolean]
2099
+ attr_accessor :send_full_resource
2100
+ alias_method :send_full_resource?, :send_full_resource
2101
+
2102
+ def initialize(**args)
2103
+ update!(**args)
2104
+ end
2105
+
2106
+ # Update properties of this object
2107
+ def update!(**args)
2108
+ @pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
2109
+ @send_full_resource = args[:send_full_resource] if args.key?(:send_full_resource)
2110
+ end
2111
+ end
2112
+
2068
2113
  # Details about the FHIR store to write the output to.
2069
2114
  class FhirOutput
2070
2115
  include Google::Apis::Core::Hashable
@@ -2096,6 +2141,18 @@ module Google
2096
2141
  class FhirStore
2097
2142
  include Google::Apis::Core::Hashable
2098
2143
 
2144
+ # Enable parsing of references within complex FHIR data types such as Extensions.
2145
+ # If this value is set to ENABLED, then features like referential integrity and
2146
+ # Bundle reference rewriting apply to all references. If this flag has not been
2147
+ # specified the behavior of the FHIR store will not change, references in
2148
+ # complex data types will not be parsed. New stores will have this value set to
2149
+ # ENABLED after a notification period. Warning: turning on this flag causes
2150
+ # processing existing resources to fail if they contain references to non-
2151
+ # existent resources.
2152
+ # Corresponds to the JSON property `complexDataTypeReferenceParsing`
2153
+ # @return [String]
2154
+ attr_accessor :complex_data_type_reference_parsing
2155
+
2099
2156
  # If true, overrides the default search behavior for this FHIR store to `
2100
2157
  # handling=strict` which returns an error for unrecognized search parameters. If
2101
2158
  # false, uses the FHIR specification default `handling=lenient` which ignores
@@ -2168,6 +2225,11 @@ module Google
2168
2225
  # @return [Google::Apis::HealthcareV1beta1::NotificationConfig]
2169
2226
  attr_accessor :notification_config
2170
2227
 
2228
+ # Specifies where and whether to send notifications upon changes to a Fhir store.
2229
+ # Corresponds to the JSON property `notificationConfigs`
2230
+ # @return [Array<Google::Apis::HealthcareV1beta1::FhirNotificationConfig>]
2231
+ attr_accessor :notification_configs
2232
+
2171
2233
  # Contains the configuration for FHIR search.
2172
2234
  # Corresponds to the JSON property `searchConfig`
2173
2235
  # @return [Google::Apis::HealthcareV1beta1::SearchConfig]
@@ -2207,6 +2269,7 @@ module Google
2207
2269
 
2208
2270
  # Update properties of this object
2209
2271
  def update!(**args)
2272
+ @complex_data_type_reference_parsing = args[:complex_data_type_reference_parsing] if args.key?(:complex_data_type_reference_parsing)
2210
2273
  @default_search_handling_strict = args[:default_search_handling_strict] if args.key?(:default_search_handling_strict)
2211
2274
  @disable_referential_integrity = args[:disable_referential_integrity] if args.key?(:disable_referential_integrity)
2212
2275
  @disable_resource_versioning = args[:disable_resource_versioning] if args.key?(:disable_resource_versioning)
@@ -2214,6 +2277,7 @@ module Google
2214
2277
  @labels = args[:labels] if args.key?(:labels)
2215
2278
  @name = args[:name] if args.key?(:name)
2216
2279
  @notification_config = args[:notification_config] if args.key?(:notification_config)
2280
+ @notification_configs = args[:notification_configs] if args.key?(:notification_configs)
2217
2281
  @search_config = args[:search_config] if args.key?(:search_config)
2218
2282
  @stream_configs = args[:stream_configs] if args.key?(:stream_configs)
2219
2283
  @validation_config = args[:validation_config] if args.key?(:validation_config)
@@ -3043,8 +3107,8 @@ module Google
3043
3107
  # @return [Hash<String,String>]
3044
3108
  attr_accessor :labels
3045
3109
 
3046
- # Resource name of the HL7v2 store, of the form `projects/`project_id`/datasets/`
3047
- # dataset_id`/hl7V2Stores/`hl7v2_store_id``.
3110
+ # Resource name of the HL7v2 store, of the form `projects/`project_id`/locations/
3111
+ # `location_id`/datasets/`dataset_id`/hl7V2Stores/`hl7v2_store_id``.
3048
3112
  # Corresponds to the JSON property `name`
3049
3113
  # @return [String]
3050
3114
  attr_accessor :name
@@ -3507,7 +3571,9 @@ module Google
3507
3571
  class KmsWrappedCryptoKey
3508
3572
  include Google::Apis::Core::Hashable
3509
3573
 
3510
- # Required. The resource name of the KMS CryptoKey to use for unwrapping.
3574
+ # Required. The resource name of the KMS CryptoKey to use for unwrapping. For
3575
+ # example, `projects/`project_id`/locations/`location_id`/keyRings/`keyring`/
3576
+ # cryptoKeys/`key``.
3511
3577
  # Corresponds to the JSON property `cryptoKey`
3512
3578
  # @return [String]
3513
3579
  attr_accessor :crypto_key
@@ -4032,9 +4098,9 @@ module Google
4032
4098
  # @return [String]
4033
4099
  attr_accessor :message_type
4034
4100
 
4035
- # Resource name of the Message, of the form `projects/`project_id`/datasets/`
4036
- # dataset_id`/hl7V2Stores/`hl7_v2_store_id`/messages/`message_id``. Assigned by
4037
- # the server.
4101
+ # Resource name of the Message, of the form `projects/`project_id`/locations/`
4102
+ # location_id`/datasets/`dataset_id`/hl7V2Stores/`hl7_v2_store_id`/messages/`
4103
+ # message_id``. Assigned by the server.
4038
4104
  # Corresponds to the JSON property `name`
4039
4105
  # @return [String]
4040
4106
  attr_accessor :name
@@ -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.27.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.5.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220413"
25
+ REVISION = "20220531"
26
26
  end
27
27
  end
28
28
  end
@@ -382,6 +382,12 @@ module Google
382
382
  include Google::Apis::Core::JsonObjectSupport
383
383
  end
384
384
 
385
+ class FhirNotificationConfig
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
385
391
  class FhirOutput
386
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
387
393
 
@@ -1579,6 +1585,14 @@ module Google
1579
1585
  end
1580
1586
  end
1581
1587
 
1588
+ class FhirNotificationConfig
1589
+ # @private
1590
+ class Representation < Google::Apis::Core::JsonRepresentation
1591
+ property :pubsub_topic, as: 'pubsubTopic'
1592
+ property :send_full_resource, as: 'sendFullResource'
1593
+ end
1594
+ end
1595
+
1582
1596
  class FhirOutput
1583
1597
  # @private
1584
1598
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1589,6 +1603,7 @@ module Google
1589
1603
  class FhirStore
1590
1604
  # @private
1591
1605
  class Representation < Google::Apis::Core::JsonRepresentation
1606
+ property :complex_data_type_reference_parsing, as: 'complexDataTypeReferenceParsing'
1592
1607
  property :default_search_handling_strict, as: 'defaultSearchHandlingStrict'
1593
1608
  property :disable_referential_integrity, as: 'disableReferentialIntegrity'
1594
1609
  property :disable_resource_versioning, as: 'disableResourceVersioning'
@@ -1597,6 +1612,8 @@ module Google
1597
1612
  property :name, as: 'name'
1598
1613
  property :notification_config, as: 'notificationConfig', class: Google::Apis::HealthcareV1beta1::NotificationConfig, decorator: Google::Apis::HealthcareV1beta1::NotificationConfig::Representation
1599
1614
 
1615
+ collection :notification_configs, as: 'notificationConfigs', class: Google::Apis::HealthcareV1beta1::FhirNotificationConfig, decorator: Google::Apis::HealthcareV1beta1::FhirNotificationConfig::Representation
1616
+
1600
1617
  property :search_config, as: 'searchConfig', class: Google::Apis::HealthcareV1beta1::SearchConfig, decorator: Google::Apis::HealthcareV1beta1::SearchConfig::Representation
1601
1618
 
1602
1619
  collection :stream_configs, as: 'streamConfigs', class: Google::Apis::HealthcareV1beta1::StreamConfig, decorator: Google::Apis::HealthcareV1beta1::StreamConfig::Representation
@@ -270,8 +270,9 @@ module Google
270
270
  # Gets the access control policy for a resource. Returns an empty policy if the
271
271
  # resource exists and does not have a policy set.
272
272
  # @param [String] resource
273
- # REQUIRED: The resource for which the policy is being requested. See the
274
- # operation documentation for the appropriate value for this field.
273
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
274
+ # names](https://cloud.google.com/apis/design/resource_names) for the
275
+ # appropriate value for this field.
275
276
  # @param [Fixnum] options_requested_policy_version
276
277
  # Optional. The maximum policy version that will be used to format the policy.
277
278
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -392,8 +393,9 @@ module Google
392
393
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
393
394
  # PERMISSION_DENIED` errors.
394
395
  # @param [String] resource
395
- # REQUIRED: The resource for which the policy is being specified. See the
396
- # operation documentation for the appropriate value for this field.
396
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
397
+ # names](https://cloud.google.com/apis/design/resource_names) for the
398
+ # appropriate value for this field.
397
399
  # @param [Google::Apis::HealthcareV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
398
400
  # @param [String] fields
399
401
  # Selector specifying which fields to include in a partial response.
@@ -430,8 +432,9 @@ module Google
430
432
  # permission-aware UIs and command-line tools, not for authorization checking.
431
433
  # This operation may "fail open" without warning.
432
434
  # @param [String] resource
433
- # REQUIRED: The resource for which the policy detail is being requested. See the
434
- # operation documentation for the appropriate value for this field.
435
+ # REQUIRED: The resource for which the policy detail is being requested. See [
436
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
437
+ # appropriate value for this field.
435
438
  # @param [Google::Apis::HealthcareV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
436
439
  # @param [String] fields
437
440
  # Selector specifying which fields to include in a partial response.
@@ -642,8 +645,9 @@ module Google
642
645
  # Gets the access control policy for a resource. Returns an empty policy if the
643
646
  # resource exists and does not have a policy set.
644
647
  # @param [String] resource
645
- # REQUIRED: The resource for which the policy is being requested. See the
646
- # operation documentation for the appropriate value for this field.
648
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
649
+ # names](https://cloud.google.com/apis/design/resource_names) for the
650
+ # appropriate value for this field.
647
651
  # @param [Fixnum] options_requested_policy_version
648
652
  # Optional. The maximum policy version that will be used to format the policy.
649
653
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -828,8 +832,9 @@ module Google
828
832
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
829
833
  # PERMISSION_DENIED` errors.
830
834
  # @param [String] resource
831
- # REQUIRED: The resource for which the policy is being specified. See the
832
- # operation documentation for the appropriate value for this field.
835
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
836
+ # names](https://cloud.google.com/apis/design/resource_names) for the
837
+ # appropriate value for this field.
833
838
  # @param [Google::Apis::HealthcareV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
834
839
  # @param [String] fields
835
840
  # Selector specifying which fields to include in a partial response.
@@ -866,8 +871,9 @@ module Google
866
871
  # permission-aware UIs and command-line tools, not for authorization checking.
867
872
  # This operation may "fail open" without warning.
868
873
  # @param [String] resource
869
- # REQUIRED: The resource for which the policy detail is being requested. See the
870
- # operation documentation for the appropriate value for this field.
874
+ # REQUIRED: The resource for which the policy detail is being requested. See [
875
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
876
+ # appropriate value for this field.
871
877
  # @param [Google::Apis::HealthcareV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
872
878
  # @param [String] fields
873
879
  # Selector specifying which fields to include in a partial response.
@@ -1258,8 +1264,9 @@ module Google
1258
1264
  # Gets the access control policy for a resource. Returns an empty policy if the
1259
1265
  # resource exists and does not have a policy set.
1260
1266
  # @param [String] resource
1261
- # REQUIRED: The resource for which the policy is being requested. See the
1262
- # operation documentation for the appropriate value for this field.
1267
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
1268
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1269
+ # appropriate value for this field.
1263
1270
  # @param [Fixnum] options_requested_policy_version
1264
1271
  # Optional. The maximum policy version that will be used to format the policy.
1265
1272
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -1461,8 +1468,9 @@ module Google
1461
1468
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
1462
1469
  # PERMISSION_DENIED` errors.
1463
1470
  # @param [String] resource
1464
- # REQUIRED: The resource for which the policy is being specified. See the
1465
- # operation documentation for the appropriate value for this field.
1471
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
1472
+ # names](https://cloud.google.com/apis/design/resource_names) for the
1473
+ # appropriate value for this field.
1466
1474
  # @param [Google::Apis::HealthcareV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
1467
1475
  # @param [String] fields
1468
1476
  # Selector specifying which fields to include in a partial response.
@@ -1499,8 +1507,9 @@ module Google
1499
1507
  # permission-aware UIs and command-line tools, not for authorization checking.
1500
1508
  # This operation may "fail open" without warning.
1501
1509
  # @param [String] resource
1502
- # REQUIRED: The resource for which the policy detail is being requested. See the
1503
- # operation documentation for the appropriate value for this field.
1510
+ # REQUIRED: The resource for which the policy detail is being requested. See [
1511
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
1512
+ # appropriate value for this field.
1504
1513
  # @param [Google::Apis::HealthcareV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
1505
1514
  # @param [String] fields
1506
1515
  # Selector specifying which fields to include in a partial response.
@@ -2741,8 +2750,9 @@ module Google
2741
2750
  # Gets the access control policy for a resource. Returns an empty policy if the
2742
2751
  # resource exists and does not have a policy set.
2743
2752
  # @param [String] resource
2744
- # REQUIRED: The resource for which the policy is being requested. See the
2745
- # operation documentation for the appropriate value for this field.
2753
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
2754
+ # names](https://cloud.google.com/apis/design/resource_names) for the
2755
+ # appropriate value for this field.
2746
2756
  # @param [Fixnum] options_requested_policy_version
2747
2757
  # Optional. The maximum policy version that will be used to format the policy.
2748
2758
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -3054,8 +3064,9 @@ module Google
3054
3064
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
3055
3065
  # PERMISSION_DENIED` errors.
3056
3066
  # @param [String] resource
3057
- # REQUIRED: The resource for which the policy is being specified. See the
3058
- # operation documentation for the appropriate value for this field.
3067
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
3068
+ # names](https://cloud.google.com/apis/design/resource_names) for the
3069
+ # appropriate value for this field.
3059
3070
  # @param [Google::Apis::HealthcareV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
3060
3071
  # @param [String] fields
3061
3072
  # Selector specifying which fields to include in a partial response.
@@ -3138,8 +3149,9 @@ module Google
3138
3149
  # permission-aware UIs and command-line tools, not for authorization checking.
3139
3150
  # This operation may "fail open" without warning.
3140
3151
  # @param [String] resource
3141
- # REQUIRED: The resource for which the policy detail is being requested. See the
3142
- # operation documentation for the appropriate value for this field.
3152
+ # REQUIRED: The resource for which the policy detail is being requested. See [
3153
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
3154
+ # appropriate value for this field.
3143
3155
  # @param [Google::Apis::HealthcareV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
3144
3156
  # @param [String] fields
3145
3157
  # Selector specifying which fields to include in a partial response.
@@ -4086,8 +4098,9 @@ module Google
4086
4098
  # Gets the access control policy for a resource. Returns an empty policy if the
4087
4099
  # resource exists and does not have a policy set.
4088
4100
  # @param [String] resource
4089
- # REQUIRED: The resource for which the policy is being requested. See the
4090
- # operation documentation for the appropriate value for this field.
4101
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
4102
+ # names](https://cloud.google.com/apis/design/resource_names) for the
4103
+ # appropriate value for this field.
4091
4104
  # @param [Fixnum] options_requested_policy_version
4092
4105
  # Optional. The maximum policy version that will be used to format the policy.
4093
4106
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -4318,8 +4331,9 @@ module Google
4318
4331
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
4319
4332
  # PERMISSION_DENIED` errors.
4320
4333
  # @param [String] resource
4321
- # REQUIRED: The resource for which the policy is being specified. See the
4322
- # operation documentation for the appropriate value for this field.
4334
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
4335
+ # names](https://cloud.google.com/apis/design/resource_names) for the
4336
+ # appropriate value for this field.
4323
4337
  # @param [Google::Apis::HealthcareV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
4324
4338
  # @param [String] fields
4325
4339
  # Selector specifying which fields to include in a partial response.
@@ -4356,8 +4370,9 @@ module Google
4356
4370
  # permission-aware UIs and command-line tools, not for authorization checking.
4357
4371
  # This operation may "fail open" without warning.
4358
4372
  # @param [String] resource
4359
- # REQUIRED: The resource for which the policy detail is being requested. See the
4360
- # operation documentation for the appropriate value for this field.
4373
+ # REQUIRED: The resource for which the policy detail is being requested. See [
4374
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
4375
+ # appropriate value for this field.
4361
4376
  # @param [Google::Apis::HealthcareV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
4362
4377
  # @param [String] fields
4363
4378
  # Selector specifying which fields to include in a partial response.
@@ -4594,11 +4609,13 @@ module Google
4594
4609
  # String of comma-delimited FHIR resource types. If provided, only resources of
4595
4610
  # the specified resource type(s) are returned.
4596
4611
  # @param [String] end_
4597
- # The response includes records prior to the end date. If no end date is
4598
- # provided, all records subsequent to the start date are in scope.
4612
+ # The response includes records prior to the end date. The date uses the format
4613
+ # YYYY-MM-DD. If no end date is provided, all records subsequent to the start
4614
+ # date are in scope.
4599
4615
  # @param [String] start
4600
- # The response includes records subsequent to the start date. If no start date
4601
- # is provided, all records prior to the end date are in scope.
4616
+ # The response includes records subsequent to the start date. The date uses the
4617
+ # format YYYY-MM-DD. If no start date is provided, all records prior to the end
4618
+ # date are in scope.
4602
4619
  # @param [String] fields
4603
4620
  # Selector specifying which fields to include in a partial response.
4604
4621
  # @param [String] quota_user
@@ -4691,7 +4708,11 @@ module Google
4691
4708
  # resourcelist.html)). Must match the resource type in the provided content.
4692
4709
  # @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
4693
4710
  # @param [String] profile
4694
- # A profile that this resource should be validated against.
4711
+ # The canonical URL of a profile that this resource should be validated against.
4712
+ # For example, to validate a Patient resource against the US Core Patient
4713
+ # profile this parameter would be `http://hl7.org/fhir/us/core/
4714
+ # StructureDefinition/us-core-patient`. A StructureDefinition with this
4715
+ # canonical URL must exist in the FHIR store.
4695
4716
  # @param [String] fields
4696
4717
  # Selector specifying which fields to include in a partial response.
4697
4718
  # @param [String] quota_user
@@ -5659,8 +5680,9 @@ module Google
5659
5680
  # Gets the access control policy for a resource. Returns an empty policy if the
5660
5681
  # resource exists and does not have a policy set.
5661
5682
  # @param [String] resource
5662
- # REQUIRED: The resource for which the policy is being requested. See the
5663
- # operation documentation for the appropriate value for this field.
5683
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
5684
+ # names](https://cloud.google.com/apis/design/resource_names) for the
5685
+ # appropriate value for this field.
5664
5686
  # @param [Fixnum] options_requested_policy_version
5665
5687
  # Optional. The maximum policy version that will be used to format the policy.
5666
5688
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -5820,8 +5842,8 @@ module Google
5820
5842
 
5821
5843
  # Updates the HL7v2 store.
5822
5844
  # @param [String] name
5823
- # Resource name of the HL7v2 store, of the form `projects/`project_id`/datasets/`
5824
- # dataset_id`/hl7V2Stores/`hl7v2_store_id``.
5845
+ # Resource name of the HL7v2 store, of the form `projects/`project_id`/locations/
5846
+ # `location_id`/datasets/`dataset_id`/hl7V2Stores/`hl7v2_store_id``.
5825
5847
  # @param [Google::Apis::HealthcareV1beta1::Hl7V2Store] hl7_v2_store_object
5826
5848
  # @param [String] update_mask
5827
5849
  # The update mask applies to the resource. For the `FieldMask` definition, see
@@ -5861,8 +5883,9 @@ module Google
5861
5883
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
5862
5884
  # PERMISSION_DENIED` errors.
5863
5885
  # @param [String] resource
5864
- # REQUIRED: The resource for which the policy is being specified. See the
5865
- # operation documentation for the appropriate value for this field.
5886
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
5887
+ # names](https://cloud.google.com/apis/design/resource_names) for the
5888
+ # appropriate value for this field.
5866
5889
  # @param [Google::Apis::HealthcareV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
5867
5890
  # @param [String] fields
5868
5891
  # Selector specifying which fields to include in a partial response.
@@ -5899,8 +5922,9 @@ module Google
5899
5922
  # permission-aware UIs and command-line tools, not for authorization checking.
5900
5923
  # This operation may "fail open" without warning.
5901
5924
  # @param [String] resource
5902
- # REQUIRED: The resource for which the policy detail is being requested. See the
5903
- # operation documentation for the appropriate value for this field.
5925
+ # REQUIRED: The resource for which the policy detail is being requested. See [
5926
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
5927
+ # appropriate value for this field.
5904
5928
  # @param [Google::Apis::HealthcareV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
5905
5929
  # @param [String] fields
5906
5930
  # Selector specifying which fields to include in a partial response.
@@ -6210,9 +6234,9 @@ module Google
6210
6234
  # are merged with the existing set of labels. Existing labels with the same keys
6211
6235
  # are updated.
6212
6236
  # @param [String] name
6213
- # Resource name of the Message, of the form `projects/`project_id`/datasets/`
6214
- # dataset_id`/hl7V2Stores/`hl7_v2_store_id`/messages/`message_id``. Assigned by
6215
- # the server.
6237
+ # Resource name of the Message, of the form `projects/`project_id`/locations/`
6238
+ # location_id`/datasets/`dataset_id`/hl7V2Stores/`hl7_v2_store_id`/messages/`
6239
+ # message_id``. Assigned by the server.
6216
6240
  # @param [Google::Apis::HealthcareV1beta1::Message] message_object
6217
6241
  # @param [String] update_mask
6218
6242
  # The update mask applies to the resource. For the `FieldMask` definition, see
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.27.0
4
+ version: 0.30.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: 2022-05-02 00:00:00.000000000 Z
11
+ date: 2022-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.5'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.4'
29
+ version: '0.5'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.30.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Healthcare API V1beta1