google-apis-healthcare_v1beta1 0.76.0 → 0.78.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 29c5aa409ac6852a6b29d269f0e824b1f61fc86417a45ffad2df679e3f199800
|
4
|
+
data.tar.gz: 1ce6b9af312ca64f8f14015774ce39415e2a79b772dd5ec5da7cd6eac67eedb3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7dff95c0b0dcbd0d06707f6e455d1ed5507b3f8a76ea323d3b487671fab5c37d96cd854162e6d8d7cf8729b9cb44c54bf1d1acca39696e6bf8306ddab7145eb
|
7
|
+
data.tar.gz: 9e03828b503b3b80d0e1f2c0ea0b5481242b02641409cc79e8becbc02e9356f9f90a5c62fba62bf346c313be674c7c1409e85fb0d0f3258a6dff9bbf9d9ea962
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-healthcare_v1beta1
|
2
2
|
|
3
|
+
### v0.78.0 (2025-03-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250306
|
6
|
+
|
7
|
+
### v0.77.0 (2025-03-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250219
|
10
|
+
|
3
11
|
### v0.76.0 (2025-02-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250218
|
@@ -1705,6 +1705,18 @@ module Google
|
|
1705
1705
|
# @return [String]
|
1706
1706
|
attr_accessor :name
|
1707
1707
|
|
1708
|
+
# Output only. For future use.
|
1709
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
1710
|
+
# @return [Boolean]
|
1711
|
+
attr_accessor :satisfies_pzi
|
1712
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
1713
|
+
|
1714
|
+
# Output only. For future use.
|
1715
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
1716
|
+
# @return [Boolean]
|
1717
|
+
attr_accessor :satisfies_pzs
|
1718
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
1719
|
+
|
1708
1720
|
# The default timezone used by this dataset. Must be a either a valid IANA time
|
1709
1721
|
# zone name such as "America/New_York" or empty, which defaults to UTC. This is
|
1710
1722
|
# used for parsing times in resources, such as HL7 messages, where no explicit
|
@@ -1721,6 +1733,8 @@ module Google
|
|
1721
1733
|
def update!(**args)
|
1722
1734
|
@encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
|
1723
1735
|
@name = args[:name] if args.key?(:name)
|
1736
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
1737
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
1724
1738
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
1725
1739
|
end
|
1726
1740
|
end
|
@@ -4069,6 +4083,11 @@ module Google
|
|
4069
4083
|
class GoogleCloudHealthcareV1beta1DicomBigQueryDestination
|
4070
4084
|
include Google::Apis::Core::Hashable
|
4071
4085
|
|
4086
|
+
# BigQuery Change Data Capture configuration.
|
4087
|
+
# Corresponds to the JSON property `changeDataCaptureConfig`
|
4088
|
+
# @return [Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig]
|
4089
|
+
attr_accessor :change_data_capture_config
|
4090
|
+
|
4072
4091
|
# Use `write_disposition` instead. If `write_disposition` is specified, this
|
4073
4092
|
# parameter is ignored. force=false is equivalent to write_disposition=
|
4074
4093
|
# WRITE_EMPTY and force=true is equivalent to write_disposition=WRITE_TRUNCATE.
|
@@ -4096,12 +4115,26 @@ module Google
|
|
4096
4115
|
|
4097
4116
|
# Update properties of this object
|
4098
4117
|
def update!(**args)
|
4118
|
+
@change_data_capture_config = args[:change_data_capture_config] if args.key?(:change_data_capture_config)
|
4099
4119
|
@force = args[:force] if args.key?(:force)
|
4100
4120
|
@table_uri = args[:table_uri] if args.key?(:table_uri)
|
4101
4121
|
@write_disposition = args[:write_disposition] if args.key?(:write_disposition)
|
4102
4122
|
end
|
4103
4123
|
end
|
4104
4124
|
|
4125
|
+
# BigQuery Change Data Capture configuration.
|
4126
|
+
class GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig
|
4127
|
+
include Google::Apis::Core::Hashable
|
4128
|
+
|
4129
|
+
def initialize(**args)
|
4130
|
+
update!(**args)
|
4131
|
+
end
|
4132
|
+
|
4133
|
+
# Update properties of this object
|
4134
|
+
def update!(**args)
|
4135
|
+
end
|
4136
|
+
end
|
4137
|
+
|
4105
4138
|
# The Cloud Storage location where the server writes the output and the export
|
4106
4139
|
# configuration.
|
4107
4140
|
class GoogleCloudHealthcareV1beta1DicomGcsDestination
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.78.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250306"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -700,6 +700,12 @@ module Google
|
|
700
700
|
include Google::Apis::Core::JsonObjectSupport
|
701
701
|
end
|
702
702
|
|
703
|
+
class GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig
|
704
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
705
|
+
|
706
|
+
include Google::Apis::Core::JsonObjectSupport
|
707
|
+
end
|
708
|
+
|
703
709
|
class GoogleCloudHealthcareV1beta1DicomGcsDestination
|
704
710
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
705
711
|
|
@@ -1861,6 +1867,8 @@ module Google
|
|
1861
1867
|
property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::HealthcareV1beta1::EncryptionSpec, decorator: Google::Apis::HealthcareV1beta1::EncryptionSpec::Representation
|
1862
1868
|
|
1863
1869
|
property :name, as: 'name'
|
1870
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
1871
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
1864
1872
|
property :time_zone, as: 'timeZone'
|
1865
1873
|
end
|
1866
1874
|
end
|
@@ -2487,12 +2495,20 @@ module Google
|
|
2487
2495
|
class GoogleCloudHealthcareV1beta1DicomBigQueryDestination
|
2488
2496
|
# @private
|
2489
2497
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2498
|
+
property :change_data_capture_config, as: 'changeDataCaptureConfig', class: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig, decorator: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig::Representation
|
2499
|
+
|
2490
2500
|
property :force, as: 'force'
|
2491
2501
|
property :table_uri, as: 'tableUri'
|
2492
2502
|
property :write_disposition, as: 'writeDisposition'
|
2493
2503
|
end
|
2494
2504
|
end
|
2495
2505
|
|
2506
|
+
class GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig
|
2507
|
+
# @private
|
2508
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2509
|
+
end
|
2510
|
+
end
|
2511
|
+
|
2496
2512
|
class GoogleCloudHealthcareV1beta1DicomGcsDestination
|
2497
2513
|
# @private
|
2498
2514
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-healthcare_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.78.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.78.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|