google-apis-healthcare_v1 0.60.0 → 0.62.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0c91af8310e1400b8542f1105284a131e08c5f42e58cee0ec9fae3da2fea64ec
|
4
|
+
data.tar.gz: 4ac25b260d6ce8ecf0d27cdef74ee55b1b30aa6405f413c3d06e006f0af41d62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85a36b77dda43da7942f6ddc37018e1ba450d52a22696fd757afe6b78e9e3b13afff5c7850c6554ca8b3a020bb7cfe5a81be890b41867035982f533de0a03e0a
|
7
|
+
data.tar.gz: 39a7a4ede58a2297bc58741349e0688b1bdf204332de92f7207e96f291c060412bd5ada1409da513f18951b866e274d30782e213fadc3fdec7033d908c906865
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-healthcare_v1
|
2
2
|
|
3
|
+
### v0.62.0 (2024-07-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240619
|
6
|
+
|
7
|
+
### v0.61.0 (2024-06-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240605
|
10
|
+
|
3
11
|
### v0.60.0 (2024-05-19)
|
4
12
|
|
5
13
|
* 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
|
837
|
-
# zone name such as "America/New_York" or empty, which defaults to UTC.
|
838
|
-
# used for parsing times in resources, such as HL7 messages, where no
|
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
|
@@ -3672,7 +3702,7 @@ module Google
|
|
3672
3702
|
|
3673
3703
|
# Output only. Resource name of the Message, of the form `projects/`project_id`/
|
3674
3704
|
# locations/`location_id`/datasets/`dataset_id`/hl7V2Stores/`hl7_v2_store_id`/
|
3675
|
-
# messages/`message_id``.
|
3705
|
+
# messages/`message_id``.
|
3676
3706
|
# Corresponds to the JSON property `name`
|
3677
3707
|
# @return [String]
|
3678
3708
|
attr_accessor :name
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.62.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 = "
|
25
|
+
REVISION = "20240619"
|
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
|
@@ -5689,7 +5689,7 @@ module Google
|
|
5689
5689
|
# @param [String] name
|
5690
5690
|
# Output only. Resource name of the Message, of the form `projects/`project_id`/
|
5691
5691
|
# locations/`location_id`/datasets/`dataset_id`/hl7V2Stores/`hl7_v2_store_id`/
|
5692
|
-
# messages/`message_id``.
|
5692
|
+
# messages/`message_id``.
|
5693
5693
|
# @param [Google::Apis::HealthcareV1::Message] message_object
|
5694
5694
|
# @param [String] update_mask
|
5695
5695
|
# Required. The update mask applies to the resource. For the `FieldMask`
|
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.
|
4
|
+
version: 0.62.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-
|
11
|
+
date: 2024-07-07 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.62.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: []
|