google-apis-healthcare_v1beta1 0.74.0 → 0.75.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 188568ad0c06d4428ee99df5f949a2af8c75131486b89c98a0e1a66aee76c22e
4
- data.tar.gz: 72e58dbf77511e0a5547c97f3f53437184da38eb5702197566f407e002feac58
3
+ metadata.gz: e14af3ce4701c96b63a4f277bfa727e0c37240954d787d71b31d429fa4af1b31
4
+ data.tar.gz: 06d4b13706087eb12dc5eee148c885dfd293274314482577b4ae7cc51ece9f95
5
5
  SHA512:
6
- metadata.gz: 76276b3b6584a29819e1ff39f8bac11d16a16631bb9c6fc4f31d72696cfbf0fc3abbe33900b494cf8162ed56ebae35eb6986226080de71bd6f95cd96836ab07a
7
- data.tar.gz: 0c7ae7b1742c5ad80267fb8050439fe5e79dded19241da4e35cb5efdf3b617eb11a7a989cfc3949bd75de7a5e08f7aea6c5637ca0c8c8718da055c55589237f2
6
+ metadata.gz: 4a760bdd95d1448c0de6234550de4afd3564c462a450d2e21a6a5c9ef140fccd27f24305fecb594fbc10f550ee8fc528afbbbd98a942272b5473924481c1404f
7
+ data.tar.gz: 382d1c28eb227752391d1dbd5210e13f0eb4380a20f7ad00e719fd09ad84581732b7946b593f3b45f50b5d00f061255e7356ad462adbc834d7a214327f7be503
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.75.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241205
6
+
3
7
  ### v0.74.0 (2024-12-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20241115
@@ -4172,6 +4172,11 @@ module Google
4172
4172
  class GoogleCloudHealthcareV1beta1FhirBigQueryDestination
4173
4173
  include Google::Apis::Core::Hashable
4174
4174
 
4175
+ # BigQuery Change Data Capture configuration.
4176
+ # Corresponds to the JSON property `changeDataCaptureConfig`
4177
+ # @return [Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirChangeDataCaptureConfig]
4178
+ attr_accessor :change_data_capture_config
4179
+
4175
4180
  # BigQuery URI to an existing dataset, up to 2000 characters long, in the format
4176
4181
  # `bq://projectId.bqDatasetId`.
4177
4182
  # Corresponds to the JSON property `datasetUri`
@@ -4205,6 +4210,7 @@ module Google
4205
4210
 
4206
4211
  # Update properties of this object
4207
4212
  def update!(**args)
4213
+ @change_data_capture_config = args[:change_data_capture_config] if args.key?(:change_data_capture_config)
4208
4214
  @dataset_uri = args[:dataset_uri] if args.key?(:dataset_uri)
4209
4215
  @force = args[:force] if args.key?(:force)
4210
4216
  @schema_config = args[:schema_config] if args.key?(:schema_config)
@@ -4212,6 +4218,27 @@ module Google
4212
4218
  end
4213
4219
  end
4214
4220
 
4221
+ # BigQuery Change Data Capture configuration.
4222
+ class GoogleCloudHealthcareV1beta1FhirChangeDataCaptureConfig
4223
+ include Google::Apis::Core::Hashable
4224
+
4225
+ # Optional. Configures how historical versions of FHIR resources will be
4226
+ # reflected in the destination table through updates and deletes. Defaults to `
4227
+ # HistoryMode.KEEP_LATEST_VERSION` if unspecified.
4228
+ # Corresponds to the JSON property `historyMode`
4229
+ # @return [String]
4230
+ attr_accessor :history_mode
4231
+
4232
+ def initialize(**args)
4233
+ update!(**args)
4234
+ end
4235
+
4236
+ # Update properties of this object
4237
+ def update!(**args)
4238
+ @history_mode = args[:history_mode] if args.key?(:history_mode)
4239
+ end
4240
+ end
4241
+
4215
4242
  # Response when all resources export successfully. This structure is included in
4216
4243
  # the response to describe the detailed outcome after the operation finishes
4217
4244
  # successfully.
@@ -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.74.0"
19
+ GEM_VERSION = "0.75.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241115"
25
+ REVISION = "20241205"
26
26
  end
27
27
  end
28
28
  end
@@ -718,6 +718,12 @@ module Google
718
718
  include Google::Apis::Core::JsonObjectSupport
719
719
  end
720
720
 
721
+ class GoogleCloudHealthcareV1beta1FhirChangeDataCaptureConfig
722
+ class Representation < Google::Apis::Core::JsonRepresentation; end
723
+
724
+ include Google::Apis::Core::JsonObjectSupport
725
+ end
726
+
721
727
  class GoogleCloudHealthcareV1beta1FhirExportResourcesResponse
722
728
  class Representation < Google::Apis::Core::JsonRepresentation; end
723
729
 
@@ -2498,6 +2504,8 @@ module Google
2498
2504
  class GoogleCloudHealthcareV1beta1FhirBigQueryDestination
2499
2505
  # @private
2500
2506
  class Representation < Google::Apis::Core::JsonRepresentation
2507
+ property :change_data_capture_config, as: 'changeDataCaptureConfig', class: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirChangeDataCaptureConfig, decorator: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirChangeDataCaptureConfig::Representation
2508
+
2501
2509
  property :dataset_uri, as: 'datasetUri'
2502
2510
  property :force, as: 'force'
2503
2511
  property :schema_config, as: 'schemaConfig', class: Google::Apis::HealthcareV1beta1::SchemaConfig, decorator: Google::Apis::HealthcareV1beta1::SchemaConfig::Representation
@@ -2506,6 +2514,13 @@ module Google
2506
2514
  end
2507
2515
  end
2508
2516
 
2517
+ class GoogleCloudHealthcareV1beta1FhirChangeDataCaptureConfig
2518
+ # @private
2519
+ class Representation < Google::Apis::Core::JsonRepresentation
2520
+ property :history_mode, as: 'historyMode'
2521
+ end
2522
+ end
2523
+
2509
2524
  class GoogleCloudHealthcareV1beta1FhirExportResourcesResponse
2510
2525
  # @private
2511
2526
  class Representation < Google::Apis::Core::JsonRepresentation
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.74.0
4
+ version: 0.75.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-12-04 00:00:00.000000000 Z
11
+ date: 2024-12-15 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.74.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.75.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.5.22
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Healthcare API V1beta1