google-apis-healthcare_v1beta1 0.71.0 → 0.72.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: ebef2bab845ab0fc1e90e2c808645c3b4888b7b3951d94c908dd7f281aa1a12d
4
- data.tar.gz: c88728280a17bb46b8d17000f96e10cb9b981a98e027d4d7f4f776e4f4e0695d
3
+ metadata.gz: e295b517c6e6a908885a18bc06bb9608b8c5d8cd348d3a1487471e8811133c3d
4
+ data.tar.gz: bc83c8252609c54a3440b29d41d2132761c9e7bcae33bdac5a9f228511e872e3
5
5
  SHA512:
6
- metadata.gz: f291f1f6a8fd5b593342971deafa613f6eba6f1fa6e7e8db01a97e095d893309b1fd5d45b6cb7c96d3c9860b950def389b9ae21b9a22d6077add023fde41101e
7
- data.tar.gz: 57f25cd809af6802abf84c86ee9fcc3f5e5cd4285b85f07e3fe7a1cde0bd85d2024e58065fa255c57dd2303950473aa672e5dcf5bf47030bd5d34c19eaec9037
6
+ metadata.gz: 18995cdec270d114ec8afe67f6a403e15c1706898fa56ebd1b060dbdb1144ddc88e524d9963e485881607ead6a34e055ef1dab6e503243df61cede2e76d237e7
7
+ data.tar.gz: bef116b5bfa7dceb197c695de5782cc39ed941761e2236e6ba56e1299b4527a62c0ea58315588b72c0dc6a7d54ecafe24c867b3dfd865becdb29c61accc5d571
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.71.0 (2024-06-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20240521
@@ -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
@@ -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.71.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 = "20240521"
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
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.71.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-06-02 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.71.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: []