google-apis-healthcare_v1beta1 0.17.0 → 0.21.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: 0312306d63dfb414b56a6159138c35dd94857159931e9611416311dcd4917c33
4
- data.tar.gz: 20a468fcb0c203864fce88eed4e745c5c026481f6a86b41f58fc5a6f771881c0
3
+ metadata.gz: 7e956ecdb5ba57eb7e378660991b77578da5fdbbfa5e9c3dc6efcc431eade56f
4
+ data.tar.gz: ff20a15b6f4c7d18549a81446eee96f12cd69e04f900f15a4aee2aefd1d7a7a1
5
5
  SHA512:
6
- metadata.gz: 3624a8c0c8ac2d00f215aa5dab0f27d82d62c205c3f25540207633ec9e0e3a6422d6e822bb8ad10c3c9ed1b03a22d68fe7052cb3b0dc7e66ff16ba88e291daaa
7
- data.tar.gz: 4bef4901978232658da0df2fd64a037d492d109c73cf0ac2edd7ded3ef4765c354906e1038cb8c9e32a144793635641c185f877972db360e11c816978d6f8155
6
+ metadata.gz: 9b99a98ef2f85a604bf4dd34f8d5f17333f4954ba95876282fc30491df2b96d4f05e7eae843b44ba05d5d48dc93dbf6bb82dbdfed40c627e9ab9a7178861fec3
7
+ data.tar.gz: 6449bb5fe8bdd9df97aaaf3d60bbbd9c4c50e05b8c8ad3968ebae14780e8b99d30611f57ddbfdbbb587c2f3fdb80d245277436dc43a3a945957b707d87fca139
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.21.0 (2022-01-20)
4
+
5
+ * Regenerated from discovery document revision 20220111
6
+ * Regenerated using generator version 0.4.1
7
+
8
+ ### v0.20.0 (2022-01-05)
9
+
10
+ * Regenerated from discovery document revision 20220104
11
+
12
+ ### v0.19.0 (2021-11-16)
13
+
14
+ * Regenerated from discovery document revision 20211105
15
+
16
+ ### v0.18.0 (2021-11-05)
17
+
18
+ * Regenerated from discovery document revision 20211025
19
+
3
20
  ### v0.17.0 (2021-10-27)
4
21
 
5
22
  * Regenerated from discovery document revision 20211016
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
 
@@ -1938,6 +1960,15 @@ module Google
1938
1960
  class FhirConfig
1939
1961
  include Google::Apis::Core::Hashable
1940
1962
 
1963
+ # The behaviour for handling FHIR extensions that aren't otherwise specified for
1964
+ # de-identification. If true, all extensions are preserved during de-
1965
+ # identification by default. If false or unspecified, all extensions are removed
1966
+ # during de-identification by default.
1967
+ # Corresponds to the JSON property `defaultKeepExtensions`
1968
+ # @return [Boolean]
1969
+ attr_accessor :default_keep_extensions
1970
+ alias_method :default_keep_extensions?, :default_keep_extensions
1971
+
1941
1972
  # Specifies FHIR paths to match and how to transform them. Any field that is not
1942
1973
  # matched by a FieldMetadata is passed through to the output dataset unmodified.
1943
1974
  # All extensions will be processed according to `default_keep_extensions`. If a
@@ -1953,6 +1984,7 @@ module Google
1953
1984
 
1954
1985
  # Update properties of this object
1955
1986
  def update!(**args)
1987
+ @default_keep_extensions = args[:default_keep_extensions] if args.key?(:default_keep_extensions)
1956
1988
  @field_metadata_list = args[:field_metadata_list] if args.key?(:field_metadata_list)
1957
1989
  end
1958
1990
  end
@@ -2171,9 +2203,10 @@ module Google
2171
2203
  # by "Address.String". For "choice" types (those defined in the FHIR spec with
2172
2204
  # the form: field[x]), use two separate components. For example, "deceasedAge.
2173
2205
  # unit" is matched by "Deceased.Age.unit". Supported types are:
2174
- # AdministrativeGenderCode, Code, Date, DateTime, Decimal, HumanName, Id,
2175
- # LanguageCode, Markdown, Oid, String, Uri, Uuid, Xhtml. The sub-type for
2176
- # 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.
2177
2210
  # Corresponds to the JSON property `paths`
2178
2211
  # @return [Array<String>]
2179
2212
  attr_accessor :paths
@@ -3382,6 +3415,36 @@ module Google
3382
3415
  end
3383
3416
  end
3384
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
+
3385
3448
  # EntityMentions can be linked to multiple entities using a LinkedEntity message
3386
3449
  # lets us add other fields, e.g. confidence.
3387
3450
  class LinkedEntity
@@ -4135,8 +4198,9 @@ module Google
4135
4198
  # @return [String]
4136
4199
  attr_accessor :segment_terminator
4137
4200
 
4138
- # Immutable. Determines the version of the unschematized parser to be used when `
4139
- # 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.
4140
4204
  # Corresponds to the JSON property `version`
4141
4205
  # @return [String]
4142
4206
  attr_accessor :version
@@ -5189,6 +5253,16 @@ module Google
5189
5253
  class ValidationConfig
5190
5254
  include Google::Apis::Core::Hashable
5191
5255
 
5256
+ # Whether to disable FHIRPath validation for incoming resources. Set this to
5257
+ # true to disable checking incoming resources for conformance against FHIRPath
5258
+ # requirement defined in the FHIR specification. This property only affects
5259
+ # resource types that do not have profiles configured for them, any rules in
5260
+ # enabled implementation guides will still be enforced.
5261
+ # Corresponds to the JSON property `disableFhirpathValidation`
5262
+ # @return [Boolean]
5263
+ attr_accessor :disable_fhirpath_validation
5264
+ alias_method :disable_fhirpath_validation?, :disable_fhirpath_validation
5265
+
5192
5266
  # Whether to disable profile validation for this FHIR store. Set this to true to
5193
5267
  # disable checking incoming resources for conformance against
5194
5268
  # StructureDefinitions in this FHIR store.
@@ -5197,6 +5271,26 @@ module Google
5197
5271
  attr_accessor :disable_profile_validation
5198
5272
  alias_method :disable_profile_validation?, :disable_profile_validation
5199
5273
 
5274
+ # Whether to disable reference type validation for incoming resources. Set this
5275
+ # to true to disable checking incoming resources for conformance against
5276
+ # reference type requirement defined in the FHIR specification. This property
5277
+ # only affects resource types that do not have profiles configured for them, any
5278
+ # rules in enabled implementation guides will still be enforced.
5279
+ # Corresponds to the JSON property `disableReferenceTypeValidation`
5280
+ # @return [Boolean]
5281
+ attr_accessor :disable_reference_type_validation
5282
+ alias_method :disable_reference_type_validation?, :disable_reference_type_validation
5283
+
5284
+ # Whether to disable required fields validation for incoming resources. Set this
5285
+ # to true to disable checking incoming resources for conformance against
5286
+ # required fields requirement defined in the FHIR specification. This property
5287
+ # only affects resource types that do not have profiles configured for them, any
5288
+ # rules in enabled implementation guides will still be enforced.
5289
+ # Corresponds to the JSON property `disableRequiredFieldValidation`
5290
+ # @return [Boolean]
5291
+ attr_accessor :disable_required_field_validation
5292
+ alias_method :disable_required_field_validation?, :disable_required_field_validation
5293
+
5200
5294
  # A list of ImplementationGuide URLs in this FHIR store that are used to
5201
5295
  # configure the profiles to use for validation. For example, to use the US Core
5202
5296
  # profiles for validation, set `enabled_implementation_guides` to `["http://hl7.
@@ -5220,7 +5314,10 @@ module Google
5220
5314
 
5221
5315
  # Update properties of this object
5222
5316
  def update!(**args)
5317
+ @disable_fhirpath_validation = args[:disable_fhirpath_validation] if args.key?(:disable_fhirpath_validation)
5223
5318
  @disable_profile_validation = args[:disable_profile_validation] if args.key?(:disable_profile_validation)
5319
+ @disable_reference_type_validation = args[:disable_reference_type_validation] if args.key?(:disable_reference_type_validation)
5320
+ @disable_required_field_validation = args[:disable_required_field_validation] if args.key?(:disable_required_field_validation)
5224
5321
  @enabled_implementation_guides = args[:enabled_implementation_guides] if args.key?(:enabled_implementation_guides)
5225
5322
  end
5226
5323
  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.17.0"
19
+ GEM_VERSION = "0.21.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 = "20211016"
25
+ REVISION = "20220111"
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
 
@@ -1530,6 +1540,7 @@ module Google
1530
1540
  class FhirConfig
1531
1541
  # @private
1532
1542
  class Representation < Google::Apis::Core::JsonRepresentation
1543
+ property :default_keep_extensions, as: 'defaultKeepExtensions'
1533
1544
  collection :field_metadata_list, as: 'fieldMetadataList', class: Google::Apis::HealthcareV1beta1::FieldMetadata, decorator: Google::Apis::HealthcareV1beta1::FieldMetadata::Representation
1534
1545
 
1535
1546
  end
@@ -1920,6 +1931,14 @@ module Google
1920
1931
  end
1921
1932
  end
1922
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
+
1923
1942
  class LinkedEntity
1924
1943
  # @private
1925
1944
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2431,7 +2450,10 @@ module Google
2431
2450
  class ValidationConfig
2432
2451
  # @private
2433
2452
  class Representation < Google::Apis::Core::JsonRepresentation
2453
+ property :disable_fhirpath_validation, as: 'disableFhirpathValidation'
2434
2454
  property :disable_profile_validation, as: 'disableProfileValidation'
2455
+ property :disable_reference_type_validation, as: 'disableReferenceTypeValidation'
2456
+ property :disable_required_field_validation, as: 'disableRequiredFieldValidation'
2435
2457
  collection :enabled_implementation_guides, as: 'enabledImplementationGuides'
2436
2458
  end
2437
2459
  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.17.0
4
+ version: 0.21.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-10-27 00:00:00.000000000 Z
11
+ date: 2022-01-24 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.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.21.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