google-apis-healthcare_v1beta1 0.70.0 → 0.72.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: b04934346c8db9b24bfc0c5ab4e7e3831c10af991ff852f86d11091fe252c0be
4
- data.tar.gz: 3ef927c2f11e775f34fdd0c14ee22f31460791bccc3acd3a4eb87b0af9195d37
3
+ metadata.gz: e295b517c6e6a908885a18bc06bb9608b8c5d8cd348d3a1487471e8811133c3d
4
+ data.tar.gz: bc83c8252609c54a3440b29d41d2132761c9e7bcae33bdac5a9f228511e872e3
5
5
  SHA512:
6
- metadata.gz: 404043e1599060c12a44d4e3b90b3106916ea6332ba9cd0bf678d404405fce6947e7ec0b1d5bc8f0c6e1b0b17a751c9d021eec34dcfc8e569218e49bab4d2d5c
7
- data.tar.gz: 6b79bea002bb3ed69a70098a6ce8d58ea696c2525dd405a23c4caf68bd9d13f7b1a8b858c0c8f425f0872fc92450e47bc8575453474c77021ae4914abe4d5647
6
+ metadata.gz: 18995cdec270d114ec8afe67f6a403e15c1706898fa56ebd1b060dbdb1144ddc88e524d9963e485881607ead6a34e055ef1dab6e503243df61cede2e76d237e7
7
+ data.tar.gz: bef116b5bfa7dceb197c695de5782cc39ed941761e2236e6ba56e1299b4527a62c0ea58315588b72c0dc6a7d54ecafe24c867b3dfd865becdb29c61accc5d571
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.72.0 (2024-06-23)
4
+
5
+ * Regenerated from discovery document revision 20240605
6
+
7
+ ### v0.71.0 (2024-06-02)
8
+
9
+ * Regenerated from discovery document revision 20240521
10
+
3
11
  ### v0.70.0 (2024-05-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20240508
@@ -1606,6 +1606,12 @@ module Google
1606
1606
  class Dataset
1607
1607
  include Google::Apis::Core::Hashable
1608
1608
 
1609
+ # Represents a customer-managed encryption key spec that can be applied to a
1610
+ # resource.
1611
+ # Corresponds to the JSON property `encryptionSpec`
1612
+ # @return [Google::Apis::HealthcareV1beta1::EncryptionSpec]
1613
+ attr_accessor :encryption_spec
1614
+
1609
1615
  # Identifier. Resource name of the dataset, of the form `projects/`project_id`/
1610
1616
  # locations/`location_id`/datasets/`dataset_id``.
1611
1617
  # Corresponds to the JSON property `name`
@@ -1626,6 +1632,7 @@ module Google
1626
1632
 
1627
1633
  # Update properties of this object
1628
1634
  def update!(**args)
1635
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
1629
1636
  @name = args[:name] if args.key?(:name)
1630
1637
  @time_zone = args[:time_zone] if args.key?(:time_zone)
1631
1638
  end
@@ -2217,6 +2224,29 @@ module Google
2217
2224
  end
2218
2225
  end
2219
2226
 
2227
+ # Represents a customer-managed encryption key spec that can be applied to a
2228
+ # resource.
2229
+ class EncryptionSpec
2230
+ include Google::Apis::Core::Hashable
2231
+
2232
+ # Required. The resource name of customer-managed encryption key that is used to
2233
+ # secure a resource and its sub-resources. Only the key in the same location as
2234
+ # this dataset is allowed to be used for encryption. Format is: `projects/`
2235
+ # project`/locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
2236
+ # Corresponds to the JSON property `kmsKeyName`
2237
+ # @return [String]
2238
+ attr_accessor :kms_key_name
2239
+
2240
+ def initialize(**args)
2241
+ update!(**args)
2242
+ end
2243
+
2244
+ # Update properties of this object
2245
+ def update!(**args)
2246
+ @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
2247
+ end
2248
+ end
2249
+
2220
2250
  # The candidate entities that an entity mention could link to.
2221
2251
  class Entity
2222
2252
  include Google::Apis::Core::Hashable
@@ -2869,11 +2899,6 @@ module Google
2869
2899
  # @return [String]
2870
2900
  attr_accessor :_type
2871
2901
 
2872
- # The configuration for exporting to BigQuery.
2873
- # Corresponds to the JSON property `bigqueryDestination`
2874
- # @return [Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirBigQueryDestination]
2875
- attr_accessor :bigquery_destination
2876
-
2877
2902
  # The configuration for exporting to Cloud Storage.
2878
2903
  # Corresponds to the JSON property `gcsDestination`
2879
2904
  # @return [Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirGcsDestination]
@@ -2895,7 +2920,6 @@ module Google
2895
2920
  def update!(**args)
2896
2921
  @_since = args[:_since] if args.key?(:_since)
2897
2922
  @_type = args[:_type] if args.key?(:_type)
2898
- @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
2899
2923
  @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
2900
2924
  @max_resource_versions = args[:max_resource_versions] if args.key?(:max_resource_versions)
2901
2925
  end
@@ -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.70.0"
19
+ GEM_VERSION = "0.72.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240508"
25
+ REVISION = "20240605"
26
26
  end
27
27
  end
28
28
  end
@@ -412,6 +412,12 @@ module Google
412
412
  include Google::Apis::Core::JsonObjectSupport
413
413
  end
414
414
 
415
+ class EncryptionSpec
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
415
421
  class Entity
416
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
417
423
 
@@ -1785,6 +1791,8 @@ module Google
1785
1791
  class Dataset
1786
1792
  # @private
1787
1793
  class Representation < Google::Apis::Core::JsonRepresentation
1794
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::HealthcareV1beta1::EncryptionSpec, decorator: Google::Apis::HealthcareV1beta1::EncryptionSpec::Representation
1795
+
1788
1796
  property :name, as: 'name'
1789
1797
  property :time_zone, as: 'timeZone'
1790
1798
  end
@@ -1960,6 +1968,13 @@ module Google
1960
1968
  end
1961
1969
  end
1962
1970
 
1971
+ class EncryptionSpec
1972
+ # @private
1973
+ class Representation < Google::Apis::Core::JsonRepresentation
1974
+ property :kms_key_name, as: 'kmsKeyName'
1975
+ end
1976
+ end
1977
+
1963
1978
  class Entity
1964
1979
  # @private
1965
1980
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2135,8 +2150,6 @@ module Google
2135
2150
  class Representation < Google::Apis::Core::JsonRepresentation
2136
2151
  property :_since, as: '_since'
2137
2152
  property :_type, as: '_type'
2138
- property :bigquery_destination, as: 'bigqueryDestination', class: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirBigQueryDestination, decorator: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirBigQueryDestination::Representation
2139
-
2140
2153
  property :gcs_destination, as: 'gcsDestination', class: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirGcsDestination, decorator: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirGcsDestination::Representation
2141
2154
 
2142
2155
  property :max_resource_versions, :numeric_string => true, as: 'maxResourceVersions'
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.70.0
4
+ version: 0.72.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-05-26 00:00:00.000000000 Z
11
+ date: 2024-06-23 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.70.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.72.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: []