google-apis-healthcare_v1 0.60.0 → 0.61.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: 3b0774d23c83018af648f80ea8657406ba20d2469395bb7ee68c37fc81e23e8c
4
- data.tar.gz: 3b80461a2235a909fbe7648e46546ad61fb566c4cfb76504755c0c1e93843962
3
+ metadata.gz: 87ebdbcae4cfe18f1f40328ca8a6e9eee5108b30d9a73c21284403968ad1c429
4
+ data.tar.gz: 1238b2fca81d2790a99945e4c766aaade4a98b929755821a6355f69ae71a03a9
5
5
  SHA512:
6
- metadata.gz: 01c1a8dc185cf196616bd8a0bcc84aadb2b9927e8fc1f41062575d4e153f73988f49dead78d6d1a435ad1322e0edc51363d4ad9b820497e7563b6875715ff438
7
- data.tar.gz: b0f2ac0cdc40a1be3cbcfae3a4c1ba16bdf8846a9934fdbc0c02789174c65aeddded37c57bdecafc07168363b1baaa519c19e564e51b909b164162e07ef1abe9
6
+ metadata.gz: 66231c171edb8a422028bf8ddbc985ccc58ee21a75449ac0c32db5272fe4286e1bcad65c140aaf12b31141a4b97f219a0448f208e0b7214661a98bd687d403c5
7
+ data.tar.gz: 6e503bf0157a109ad25215b50b2fda7806856c746381a9749dec5fb33d9b73bc2248da9f1a3d2832ad1d3fd05a39f8a6bcfe84a6f01be6dc584c895ff5abded5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1
2
2
 
3
+ ### v0.61.0 (2024-06-23)
4
+
5
+ * Regenerated from discovery document revision 20240605
6
+
3
7
  ### v0.60.0 (2024-05-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20240429
@@ -827,16 +827,22 @@ module Google
827
827
  class Dataset
828
828
  include Google::Apis::Core::Hashable
829
829
 
830
+ # Represents a customer-managed encryption key spec that can be applied to a
831
+ # resource.
832
+ # Corresponds to the JSON property `encryptionSpec`
833
+ # @return [Google::Apis::HealthcareV1::EncryptionSpec]
834
+ attr_accessor :encryption_spec
835
+
830
836
  # Identifier. Resource name of the dataset, of the form `projects/`project_id`/
831
837
  # locations/`location_id`/datasets/`dataset_id``.
832
838
  # Corresponds to the JSON property `name`
833
839
  # @return [String]
834
840
  attr_accessor :name
835
841
 
836
- # The default timezone used by this dataset. Must be a either a valid IANA time
837
- # zone name such as "America/New_York" or empty, which defaults to UTC. This is
838
- # used for parsing times in resources, such as HL7 messages, where no explicit
839
- # timezone is specified.
842
+ # Optional. The default timezone used by this dataset. Must be a either a valid
843
+ # IANA time zone name such as "America/New_York" or empty, which defaults to UTC.
844
+ # This is used for parsing times in resources, such as HL7 messages, where no
845
+ # explicit timezone is specified.
840
846
  # Corresponds to the JSON property `timeZone`
841
847
  # @return [String]
842
848
  attr_accessor :time_zone
@@ -847,6 +853,7 @@ module Google
847
853
 
848
854
  # Update properties of this object
849
855
  def update!(**args)
856
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
850
857
  @name = args[:name] if args.key?(:name)
851
858
  @time_zone = args[:time_zone] if args.key?(:time_zone)
852
859
  end
@@ -1316,6 +1323,29 @@ module Google
1316
1323
  end
1317
1324
  end
1318
1325
 
1326
+ # Represents a customer-managed encryption key spec that can be applied to a
1327
+ # resource.
1328
+ class EncryptionSpec
1329
+ include Google::Apis::Core::Hashable
1330
+
1331
+ # Required. The resource name of customer-managed encryption key that is used to
1332
+ # secure a resource and its sub-resources. Only the key in the same location as
1333
+ # this Dataset is allowed to be used for encryption. Format is: `projects/`
1334
+ # project`/locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
1335
+ # Corresponds to the JSON property `kmsKeyName`
1336
+ # @return [String]
1337
+ attr_accessor :kms_key_name
1338
+
1339
+ def initialize(**args)
1340
+ update!(**args)
1341
+ end
1342
+
1343
+ # Update properties of this object
1344
+ def update!(**args)
1345
+ @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
1346
+ end
1347
+ end
1348
+
1319
1349
  # The candidate entities that an entity mention could link to.
1320
1350
  class Entity
1321
1351
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module HealthcareV1
18
18
  # Version of the google-apis-healthcare_v1 gem
19
- GEM_VERSION = "0.60.0"
19
+ GEM_VERSION = "0.61.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 = "20240429"
25
+ REVISION = "20240605"
26
26
  end
27
27
  end
28
28
  end
@@ -226,6 +226,12 @@ module Google
226
226
  include Google::Apis::Core::JsonObjectSupport
227
227
  end
228
228
 
229
+ class EncryptionSpec
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
229
235
  class Entity
230
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
237
 
@@ -1106,6 +1112,8 @@ module Google
1106
1112
  class Dataset
1107
1113
  # @private
1108
1114
  class Representation < Google::Apis::Core::JsonRepresentation
1115
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::HealthcareV1::EncryptionSpec, decorator: Google::Apis::HealthcareV1::EncryptionSpec::Representation
1116
+
1109
1117
  property :name, as: 'name'
1110
1118
  property :time_zone, as: 'timeZone'
1111
1119
  end
@@ -1234,6 +1242,13 @@ module Google
1234
1242
  end
1235
1243
  end
1236
1244
 
1245
+ class EncryptionSpec
1246
+ # @private
1247
+ class Representation < Google::Apis::Core::JsonRepresentation
1248
+ property :kms_key_name, as: 'kmsKeyName'
1249
+ end
1250
+ end
1251
+
1237
1252
  class Entity
1238
1253
  # @private
1239
1254
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-healthcare_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.60.0
4
+ version: 0.61.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-19 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.60.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.61.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1
63
63
  post_install_message:
64
64
  rdoc_options: []