google-apis-healthcare_v1beta1 0.19.0 → 0.22.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: 163a5892463f225d4b762451351d3a30e7e2f29f7e263deef4891170575063a9
4
- data.tar.gz: 947b5a1f67511b556bc5c83e20a69d9cd1452e57c4804e5f0acb5a0f3ff1fe8d
3
+ metadata.gz: 4bd15544e93b1e70273dba492959ffe9a0a2af3338886d062212b23fb32ed035
4
+ data.tar.gz: 95db0191a6857ef95479870e4370c226c850b4a2c81dc95305786ba1a63bb191
5
5
  SHA512:
6
- metadata.gz: 6617de76edca9ab967fa68c9f131d6569e050c44a4346bb2f710ebcccddbfb90951ace80ef9a03c9410be4223499116167ec8058468b0d4b6a398e971c09b550
7
- data.tar.gz: '059e6b43614dd874e1c94e23cf7afda602c4c42f0bd8412278db4d36456713a5cbd06bd6a9f46cc12efa2e4fdc50e235a1623e9f4c17e6c4bb03f619759fb037'
6
+ metadata.gz: 6258711ac08b8b657f40098dd9d938acdb12f7d52623311df25bf4c3b4a07ce8a9cfd458b1d2b81d63947ea5ccbd9e564f373ef4d75772b7e09c95f5c8951782
7
+ data.tar.gz: 6f4eea3b9eff7fa0764f98ca62d33c51e972519676ae1761f9f144eae4bacf6a3eb79332edf6ab4ed52f714a5e1a149d796057d3ce5388fe4ecd3b8dd89853be
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.22.0 (2022-02-23)
4
+
5
+ * Regenerated from discovery document revision 20220211
6
+
7
+ ### v0.21.0 (2022-01-20)
8
+
9
+ * Regenerated from discovery document revision 20220111
10
+ * Regenerated using generator version 0.4.1
11
+
12
+ ### v0.20.0 (2022-01-05)
13
+
14
+ * Regenerated from discovery document revision 20220104
15
+
3
16
  ### v0.19.0 (2021-11-16)
4
17
 
5
18
  * Regenerated from discovery document revision 20211105
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/healthcare_v1beta1"
51
51
  client = Google::Apis::HealthcareV1beta1::CloudHealthcareService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -978,13 +978,23 @@ module Google
978
978
  include Google::Apis::Core::Hashable
979
979
 
980
980
  # An AES 128/192/256 bit key. Causes the hash to be computed based on this key.
981
- # A default key is generated for each Deidentify operation and is used wherever
982
- # crypto_key is not specified.
981
+ # A default key is generated for each Deidentify operation and is used when
982
+ # neither `crypto_key` nor `kms_wrapped` is specified. Must not be set if `
983
+ # kms_wrapped` is set.
983
984
  # Corresponds to the JSON property `cryptoKey`
984
985
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
985
986
  # @return [String]
986
987
  attr_accessor :crypto_key
987
988
 
989
+ # Include to use an existing data crypto key wrapped by KMS. The wrapped key
990
+ # must be a 128-, 192-, or 256-bit key. The key must grant the Cloud IAM
991
+ # permission `cloudkms.cryptoKeyVersions.useToDecrypt` to the project's Cloud
992
+ # Healthcare Service Agent service account. For more information, see [Creating
993
+ # a wrapped key] (https://cloud.google.com/dlp/docs/create-wrapped-key).
994
+ # Corresponds to the JSON property `kmsWrapped`
995
+ # @return [Google::Apis::HealthcareV1beta1::KmsWrappedCryptoKey]
996
+ attr_accessor :kms_wrapped
997
+
988
998
  def initialize(**args)
989
999
  update!(**args)
990
1000
  end
@@ -992,6 +1002,7 @@ module Google
992
1002
  # Update properties of this object
993
1003
  def update!(**args)
994
1004
  @crypto_key = args[:crypto_key] if args.key?(:crypto_key)
1005
+ @kms_wrapped = args[:kms_wrapped] if args.key?(:kms_wrapped)
995
1006
  end
996
1007
  end
997
1008
 
@@ -1033,13 +1044,23 @@ module Google
1033
1044
  include Google::Apis::Core::Hashable
1034
1045
 
1035
1046
  # An AES 128/192/256 bit key. Causes the shift to be computed based on this key
1036
- # and the patient ID. A default key is generated for each Deidentify operation
1037
- # and is used wherever crypto_key is not specified.
1047
+ # and the patient ID. A default key is generated for each de-identification
1048
+ # operation and is used when neither `crypto_key` nor `kms_wrapped` is specified.
1049
+ # Must not be set if `kms_wrapped` is set.
1038
1050
  # Corresponds to the JSON property `cryptoKey`
1039
1051
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
1040
1052
  # @return [String]
1041
1053
  attr_accessor :crypto_key
1042
1054
 
1055
+ # Include to use an existing data crypto key wrapped by KMS. The wrapped key
1056
+ # must be a 128-, 192-, or 256-bit key. The key must grant the Cloud IAM
1057
+ # permission `cloudkms.cryptoKeyVersions.useToDecrypt` to the project's Cloud
1058
+ # Healthcare Service Agent service account. For more information, see [Creating
1059
+ # a wrapped key] (https://cloud.google.com/dlp/docs/create-wrapped-key).
1060
+ # Corresponds to the JSON property `kmsWrapped`
1061
+ # @return [Google::Apis::HealthcareV1beta1::KmsWrappedCryptoKey]
1062
+ attr_accessor :kms_wrapped
1063
+
1043
1064
  def initialize(**args)
1044
1065
  update!(**args)
1045
1066
  end
@@ -1047,6 +1068,7 @@ module Google
1047
1068
  # Update properties of this object
1048
1069
  def update!(**args)
1049
1070
  @crypto_key = args[:crypto_key] if args.key?(:crypto_key)
1071
+ @kms_wrapped = args[:kms_wrapped] if args.key?(:kms_wrapped)
1050
1072
  end
1051
1073
  end
1052
1074
 
@@ -2181,9 +2203,10 @@ module Google
2181
2203
  # by "Address.String". For "choice" types (those defined in the FHIR spec with
2182
2204
  # the form: field[x]), use two separate components. For example, "deceasedAge.
2183
2205
  # unit" is matched by "Deceased.Age.unit". Supported types are:
2184
- # AdministrativeGenderCode, Code, Date, DateTime, Decimal, HumanName, Id,
2185
- # LanguageCode, Markdown, Oid, String, Uri, Uuid, Xhtml. The sub-type for
2186
- # HumanName, such as HumanName.given or HumanName.family, can be omitted.
2206
+ # AdministrativeGenderCode, Base64Binary, Boolean, Code, Date, DateTime, Decimal,
2207
+ # HumanName, Id, Instant, Integer, LanguageCode, Markdown, Oid, PositiveInt,
2208
+ # String, UnsignedInt, Uri, Uuid, Xhtml. The sub-type for HumanName(for example
2209
+ # HumanName.given, HumanName.family) can be omitted.
2187
2210
  # Corresponds to the JSON property `paths`
2188
2211
  # @return [Array<String>]
2189
2212
  attr_accessor :paths
@@ -3392,6 +3415,36 @@ module Google
3392
3415
  end
3393
3416
  end
3394
3417
 
3418
+ # Include to use an existing data crypto key wrapped by KMS. The wrapped key
3419
+ # must be a 128-, 192-, or 256-bit key. The key must grant the Cloud IAM
3420
+ # permission `cloudkms.cryptoKeyVersions.useToDecrypt` to the project's Cloud
3421
+ # Healthcare Service Agent service account. For more information, see [Creating
3422
+ # a wrapped key] (https://cloud.google.com/dlp/docs/create-wrapped-key).
3423
+ class KmsWrappedCryptoKey
3424
+ include Google::Apis::Core::Hashable
3425
+
3426
+ # Required. The resource name of the KMS CryptoKey to use for unwrapping.
3427
+ # Corresponds to the JSON property `cryptoKey`
3428
+ # @return [String]
3429
+ attr_accessor :crypto_key
3430
+
3431
+ # Required. The wrapped data crypto key.
3432
+ # Corresponds to the JSON property `wrappedKey`
3433
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
3434
+ # @return [String]
3435
+ attr_accessor :wrapped_key
3436
+
3437
+ def initialize(**args)
3438
+ update!(**args)
3439
+ end
3440
+
3441
+ # Update properties of this object
3442
+ def update!(**args)
3443
+ @crypto_key = args[:crypto_key] if args.key?(:crypto_key)
3444
+ @wrapped_key = args[:wrapped_key] if args.key?(:wrapped_key)
3445
+ end
3446
+ end
3447
+
3395
3448
  # EntityMentions can be linked to multiple entities using a LinkedEntity message
3396
3449
  # lets us add other fields, e.g. confidence.
3397
3450
  class LinkedEntity
@@ -4145,8 +4198,9 @@ module Google
4145
4198
  # @return [String]
4146
4199
  attr_accessor :segment_terminator
4147
4200
 
4148
- # Immutable. Determines the version of the unschematized parser to be used when `
4149
- # schema` is not given. This field is immutable after store creation.
4201
+ # Immutable. Determines the version of both the default parser to be used when `
4202
+ # schema` is not given, as well as the schematized parser used when `schema` is
4203
+ # specified. This field is immutable after HL7v2 store creation.
4150
4204
  # Corresponds to the JSON property `version`
4151
4205
  # @return [String]
4152
4206
  attr_accessor :version
@@ -4763,6 +4817,26 @@ module Google
4763
4817
  class SearchResourcesRequest
4764
4818
  include Google::Apis::Core::Hashable
4765
4819
 
4820
+ # Message that represents an arbitrary HTTP body. It should only be used for
4821
+ # payload formats that can't be represented as JSON, such as raw binary or an
4822
+ # HTML page. This message can be used both in streaming and non-streaming API
4823
+ # methods in the request as well as the response. It can be used as a top-level
4824
+ # request field, which is convenient if one wants to extract parameters from
4825
+ # either the URL or HTTP template into the request fields and also want access
4826
+ # to the raw HTTP body. Example: message GetResourceRequest ` // A unique
4827
+ # request id. string request_id = 1; // The raw HTTP body is bound to this field.
4828
+ # google.api.HttpBody http_body = 2; ` service ResourceService ` rpc
4829
+ # GetResource(GetResourceRequest) returns (google.api.HttpBody); rpc
4830
+ # UpdateResource(google.api.HttpBody) returns (google.protobuf.Empty); ` Example
4831
+ # with streaming methods: service CaldavService ` rpc GetCalendar(stream google.
4832
+ # api.HttpBody) returns (stream google.api.HttpBody); rpc UpdateCalendar(stream
4833
+ # google.api.HttpBody) returns (stream google.api.HttpBody); ` Use of this type
4834
+ # only changes how the request and response bodies are handled, all other
4835
+ # features will continue to work unchanged.
4836
+ # Corresponds to the JSON property `requestBody`
4837
+ # @return [Google::Apis::HealthcareV1beta1::HttpBody]
4838
+ attr_accessor :request_body
4839
+
4766
4840
  # The FHIR resource type to search, such as Patient or Observation. For a
4767
4841
  # complete list, see the FHIR Resource Index ([DSTU2](https://hl7.org/implement/
4768
4842
  # standards/fhir/DSTU2/resourcelist.html), [STU3](https://hl7.org/implement/
@@ -4778,6 +4852,7 @@ module Google
4778
4852
 
4779
4853
  # Update properties of this object
4780
4854
  def update!(**args)
4855
+ @request_body = args[:request_body] if args.key?(:request_body)
4781
4856
  @resource_type = args[:resource_type] if args.key?(:resource_type)
4782
4857
  end
4783
4858
  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.19.0"
19
+ GEM_VERSION = "0.22.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211105"
25
+ REVISION = "20220211"
26
26
  end
27
27
  end
28
28
  end
@@ -634,6 +634,12 @@ module Google
634
634
  include Google::Apis::Core::JsonObjectSupport
635
635
  end
636
636
 
637
+ class KmsWrappedCryptoKey
638
+ class Representation < Google::Apis::Core::JsonRepresentation; end
639
+
640
+ include Google::Apis::Core::JsonObjectSupport
641
+ end
642
+
637
643
  class LinkedEntity
638
644
  class Representation < Google::Apis::Core::JsonRepresentation; end
639
645
 
@@ -1252,6 +1258,8 @@ module Google
1252
1258
  # @private
1253
1259
  class Representation < Google::Apis::Core::JsonRepresentation
1254
1260
  property :crypto_key, :base64 => true, as: 'cryptoKey'
1261
+ property :kms_wrapped, as: 'kmsWrapped', class: Google::Apis::HealthcareV1beta1::KmsWrappedCryptoKey, decorator: Google::Apis::HealthcareV1beta1::KmsWrappedCryptoKey::Representation
1262
+
1255
1263
  end
1256
1264
  end
1257
1265
 
@@ -1267,6 +1275,8 @@ module Google
1267
1275
  # @private
1268
1276
  class Representation < Google::Apis::Core::JsonRepresentation
1269
1277
  property :crypto_key, :base64 => true, as: 'cryptoKey'
1278
+ property :kms_wrapped, as: 'kmsWrapped', class: Google::Apis::HealthcareV1beta1::KmsWrappedCryptoKey, decorator: Google::Apis::HealthcareV1beta1::KmsWrappedCryptoKey::Representation
1279
+
1270
1280
  end
1271
1281
  end
1272
1282
 
@@ -1921,6 +1931,14 @@ module Google
1921
1931
  end
1922
1932
  end
1923
1933
 
1934
+ class KmsWrappedCryptoKey
1935
+ # @private
1936
+ class Representation < Google::Apis::Core::JsonRepresentation
1937
+ property :crypto_key, as: 'cryptoKey'
1938
+ property :wrapped_key, :base64 => true, as: 'wrappedKey'
1939
+ end
1940
+ end
1941
+
1924
1942
  class LinkedEntity
1925
1943
  # @private
1926
1944
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2310,6 +2328,8 @@ module Google
2310
2328
  class SearchResourcesRequest
2311
2329
  # @private
2312
2330
  class Representation < Google::Apis::Core::JsonRepresentation
2331
+ property :request_body, as: 'requestBody', class: Google::Apis::HealthcareV1beta1::HttpBody, decorator: Google::Apis::HealthcareV1beta1::HttpBody::Representation
2332
+
2313
2333
  property :resource_type, as: 'resourceType'
2314
2334
  end
2315
2335
  end
@@ -273,13 +273,16 @@ module Google
273
273
  # REQUIRED: The resource for which the policy is being requested. See the
274
274
  # operation documentation for the appropriate value for this field.
275
275
  # @param [Fixnum] options_requested_policy_version
276
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
277
- # 3. Requests specifying an invalid value will be rejected. Requests for
278
- # policies with any conditional bindings must specify version 3. Policies
279
- # without any conditional bindings may specify any valid value or leave the
280
- # field unset. To learn which resources support conditions in their IAM policies,
281
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
282
- # resource-policies).
276
+ # Optional. The maximum policy version that will be used to format the policy.
277
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
278
+ # rejected. Requests for policies with any conditional role bindings must
279
+ # specify version 3. Policies with no conditional role bindings may specify any
280
+ # valid value or leave the field unset. The policy in the response might use the
281
+ # policy version that you specified, or it might use a lower policy version. For
282
+ # example, if you specify version 3, but the policy has no conditional role
283
+ # bindings, the response uses version 1. To learn which resources support
284
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
285
+ # google.com/iam/help/conditions/resource-policies).
283
286
  # @param [String] fields
284
287
  # Selector specifying which fields to include in a partial response.
285
288
  # @param [String] quota_user
@@ -642,13 +645,16 @@ module Google
642
645
  # REQUIRED: The resource for which the policy is being requested. See the
643
646
  # operation documentation for the appropriate value for this field.
644
647
  # @param [Fixnum] options_requested_policy_version
645
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
646
- # 3. Requests specifying an invalid value will be rejected. Requests for
647
- # policies with any conditional bindings must specify version 3. Policies
648
- # without any conditional bindings may specify any valid value or leave the
649
- # field unset. To learn which resources support conditions in their IAM policies,
650
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
651
- # resource-policies).
648
+ # Optional. The maximum policy version that will be used to format the policy.
649
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
650
+ # rejected. Requests for policies with any conditional role bindings must
651
+ # specify version 3. Policies with no conditional role bindings may specify any
652
+ # valid value or leave the field unset. The policy in the response might use the
653
+ # policy version that you specified, or it might use a lower policy version. For
654
+ # example, if you specify version 3, but the policy has no conditional role
655
+ # bindings, the response uses version 1. To learn which resources support
656
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
657
+ # google.com/iam/help/conditions/resource-policies).
652
658
  # @param [String] fields
653
659
  # Selector specifying which fields to include in a partial response.
654
660
  # @param [String] quota_user
@@ -1255,13 +1261,16 @@ module Google
1255
1261
  # REQUIRED: The resource for which the policy is being requested. See the
1256
1262
  # operation documentation for the appropriate value for this field.
1257
1263
  # @param [Fixnum] options_requested_policy_version
1258
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
1259
- # 3. Requests specifying an invalid value will be rejected. Requests for
1260
- # policies with any conditional bindings must specify version 3. Policies
1261
- # without any conditional bindings may specify any valid value or leave the
1262
- # field unset. To learn which resources support conditions in their IAM policies,
1263
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1264
- # resource-policies).
1264
+ # Optional. The maximum policy version that will be used to format the policy.
1265
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
1266
+ # rejected. Requests for policies with any conditional role bindings must
1267
+ # specify version 3. Policies with no conditional role bindings may specify any
1268
+ # valid value or leave the field unset. The policy in the response might use the
1269
+ # policy version that you specified, or it might use a lower policy version. For
1270
+ # example, if you specify version 3, but the policy has no conditional role
1271
+ # bindings, the response uses version 1. To learn which resources support
1272
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1273
+ # google.com/iam/help/conditions/resource-policies).
1265
1274
  # @param [String] fields
1266
1275
  # Selector specifying which fields to include in a partial response.
1267
1276
  # @param [String] quota_user
@@ -2735,13 +2744,16 @@ module Google
2735
2744
  # REQUIRED: The resource for which the policy is being requested. See the
2736
2745
  # operation documentation for the appropriate value for this field.
2737
2746
  # @param [Fixnum] options_requested_policy_version
2738
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
2739
- # 3. Requests specifying an invalid value will be rejected. Requests for
2740
- # policies with any conditional bindings must specify version 3. Policies
2741
- # without any conditional bindings may specify any valid value or leave the
2742
- # field unset. To learn which resources support conditions in their IAM policies,
2743
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
2744
- # resource-policies).
2747
+ # Optional. The maximum policy version that will be used to format the policy.
2748
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
2749
+ # rejected. Requests for policies with any conditional role bindings must
2750
+ # specify version 3. Policies with no conditional role bindings may specify any
2751
+ # valid value or leave the field unset. The policy in the response might use the
2752
+ # policy version that you specified, or it might use a lower policy version. For
2753
+ # example, if you specify version 3, but the policy has no conditional role
2754
+ # bindings, the response uses version 1. To learn which resources support
2755
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
2756
+ # google.com/iam/help/conditions/resource-policies).
2745
2757
  # @param [String] fields
2746
2758
  # Selector specifying which fields to include in a partial response.
2747
2759
  # @param [String] quota_user
@@ -4077,13 +4089,16 @@ module Google
4077
4089
  # REQUIRED: The resource for which the policy is being requested. See the
4078
4090
  # operation documentation for the appropriate value for this field.
4079
4091
  # @param [Fixnum] options_requested_policy_version
4080
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
4081
- # 3. Requests specifying an invalid value will be rejected. Requests for
4082
- # policies with any conditional bindings must specify version 3. Policies
4083
- # without any conditional bindings may specify any valid value or leave the
4084
- # field unset. To learn which resources support conditions in their IAM policies,
4085
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
4086
- # resource-policies).
4092
+ # Optional. The maximum policy version that will be used to format the policy.
4093
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
4094
+ # rejected. Requests for policies with any conditional role bindings must
4095
+ # specify version 3. Policies with no conditional role bindings may specify any
4096
+ # valid value or leave the field unset. The policy in the response might use the
4097
+ # policy version that you specified, or it might use a lower policy version. For
4098
+ # example, if you specify version 3, but the policy has no conditional role
4099
+ # bindings, the response uses version 1. To learn which resources support
4100
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
4101
+ # google.com/iam/help/conditions/resource-policies).
4087
4102
  # @param [String] fields
4088
4103
  # Selector specifying which fields to include in a partial response.
4089
4104
  # @param [String] quota_user
@@ -5641,13 +5656,16 @@ module Google
5641
5656
  # REQUIRED: The resource for which the policy is being requested. See the
5642
5657
  # operation documentation for the appropriate value for this field.
5643
5658
  # @param [Fixnum] options_requested_policy_version
5644
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
5645
- # 3. Requests specifying an invalid value will be rejected. Requests for
5646
- # policies with any conditional bindings must specify version 3. Policies
5647
- # without any conditional bindings may specify any valid value or leave the
5648
- # field unset. To learn which resources support conditions in their IAM policies,
5649
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
5650
- # resource-policies).
5659
+ # Optional. The maximum policy version that will be used to format the policy.
5660
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
5661
+ # rejected. Requests for policies with any conditional role bindings must
5662
+ # specify version 3. Policies with no conditional role bindings may specify any
5663
+ # valid value or leave the field unset. The policy in the response might use the
5664
+ # policy version that you specified, or it might use a lower policy version. For
5665
+ # example, if you specify version 3, but the policy has no conditional role
5666
+ # bindings, the response uses version 1. To learn which resources support
5667
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
5668
+ # google.com/iam/help/conditions/resource-policies).
5651
5669
  # @param [String] fields
5652
5670
  # Selector specifying which fields to include in a partial response.
5653
5671
  # @param [String] quota_user
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.19.0
4
+ version: 0.22.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: 2021-12-06 00:00:00.000000000 Z
11
+ date: 2022-02-28 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.19.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.22.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Healthcare API V1beta1