google-apis-healthcare_v1beta1 0.29.0 → 0.32.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: b562072c3a72336b0eb6e079447574b4945a38085bb2834b5b545a8a57aa60b5
4
- data.tar.gz: 6e75438d949972b51331d5cc9ce202a757579c7cdca9460324ca05cfe1adb78e
3
+ metadata.gz: fc273a5c5e5d6d06cced4ca37fa917543caa9ec6a39a35b49711918414d65dd3
4
+ data.tar.gz: cadd1351ff7d16bc2d66837af84ffbe50806967a9e586681843bd95b8d0bf3c3
5
5
  SHA512:
6
- metadata.gz: 1aae60d94f0ab645083ecb37f480cd44d4ea67eafeeaba05390690e57ea1b0f79e06f292786fa41fde9b787f6cf52e591fafb55f43c74414e867a6716e997b8c
7
- data.tar.gz: 194c1621ae4c66f00c9119e13e8c3d668092a2c83b3eb98395b21c50d20aedaa602447fb7bce47d54d5b13b7501f5ca178d26743f7f28170e0582c7b72ec8857
6
+ metadata.gz: f4f130aa0693ed992b1f6c11adbd4cc909c2374532fb2eef1b4db7fb80850b25ac520a95632485f3bb551eebacc0c26a8b33039b9d8017f4b7c48a02b90f1f52
7
+ data.tar.gz: 12d8cfa9d337dcf904d07d1fd636df2dcdc06d26886e3ed68ad82d244522de48b3fa4f4ed7725ce7f8f68c1f850d7205a0d9da99ca681f999a59244b636a067d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.32.0 (2022-06-30)
4
+
5
+ * Regenerated using generator version 0.8.0
6
+
7
+ ### v0.31.0 (2022-06-19)
8
+
9
+ * Regenerated using generator version 0.7.0
10
+
11
+ ### v0.30.0 (2022-06-10)
12
+
13
+ * Regenerated from discovery document revision 20220531
14
+ * Regenerated using generator version 0.5.0
15
+
3
16
  ### v0.29.0 (2022-05-25)
4
17
 
5
18
  * Regenerated from discovery document revision 20220512
@@ -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.29.0"
19
+ GEM_VERSION = "0.32.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.8.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220512"
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
@@ -5842,8 +5842,8 @@ module Google
5842
5842
 
5843
5843
  # Updates the HL7v2 store.
5844
5844
  # @param [String] name
5845
- # Resource name of the HL7v2 store, of the form `projects/`project_id`/datasets/`
5846
- # 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``.
5847
5847
  # @param [Google::Apis::HealthcareV1beta1::Hl7V2Store] hl7_v2_store_object
5848
5848
  # @param [String] update_mask
5849
5849
  # The update mask applies to the resource. For the `FieldMask` definition, see
@@ -6234,9 +6234,9 @@ module Google
6234
6234
  # are merged with the existing set of labels. Existing labels with the same keys
6235
6235
  # are updated.
6236
6236
  # @param [String] name
6237
- # Resource name of the Message, of the form `projects/`project_id`/datasets/`
6238
- # dataset_id`/hl7V2Stores/`hl7_v2_store_id`/messages/`message_id``. Assigned by
6239
- # 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.
6240
6240
  # @param [Google::Apis::HealthcareV1beta1::Message] message_object
6241
6241
  # @param [String] update_mask
6242
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.29.0
4
+ version: 0.32.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-30 00:00:00.000000000 Z
11
+ date: 2022-07-04 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.7'
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.7'
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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.32.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: []