google-apis-healthcare_v1 0.18.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: e726c9e7d3320eaaf40bdd80497daca84991e2fa2b424e9042fbc632de45570a
4
- data.tar.gz: 140137b27a0583b0e8fd9fea5c33e64e0f2726ad0185a3f73f9c9ce71dc7ed7a
3
+ metadata.gz: ed5ac8791bc09c1d45e5d4b489b249093e756d18eb5f5be4b8e46e3a7e356a8a
4
+ data.tar.gz: aaca0e4d4051a6b63031ec2597b79fdd6c4586ee2f2b03095bddaf7c1da5bd2e
5
5
  SHA512:
6
- metadata.gz: ec200da3075df6487d50ddd3f22d67735e16eae85bd4212ce1d7a547411919cd1e698d50370a872b9521b863fb0ea0f5b74a7064aeb522f3f233c5f7674f058e
7
- data.tar.gz: 8c67a8efa7c027a46300bb7e4f711abea137230e34881c2a645b5f1490272bac50bd7e7491013a50ea41c9a9871d43cf4e19e56ddf68292fae77399fb4b871ab
6
+ metadata.gz: 05d91461973ac51065139891cfb68ba2f9bd77db4851a05e736b180e66e148849dffe32ca098bdd995c92675cfd4ee3e02c8cb00d534b8daa410b557ff5c8c55
7
+ data.tar.gz: 789746213a6cf82cdf588a23eec56811e74865ec00791a7a982807d36b710f02691356a2cfd2bbec7aaea457a01a713160e595fa84af49cc833eabf1e4d0af3e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-healthcare_v1
2
2
 
3
+ ### v0.21.0 (2022-02-23)
4
+
5
+ * Regenerated from discovery document revision 20220211
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
+
3
16
  ### v0.18.0 (2021-11-05)
4
17
 
5
18
  * Regenerated from discovery document revision 20211025
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/healthcare_v1"
51
51
  client = Google::Apis::HealthcareV1::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.
@@ -1555,6 +1555,15 @@ module Google
1555
1555
  class FhirConfig
1556
1556
  include Google::Apis::Core::Hashable
1557
1557
 
1558
+ # The behaviour for handling FHIR extensions that aren't otherwise specified for
1559
+ # de-identification. If true, all extensions are preserved during de-
1560
+ # identification by default. If false or unspecified, all extensions are removed
1561
+ # during de-identification by default.
1562
+ # Corresponds to the JSON property `defaultKeepExtensions`
1563
+ # @return [Boolean]
1564
+ attr_accessor :default_keep_extensions
1565
+ alias_method :default_keep_extensions?, :default_keep_extensions
1566
+
1558
1567
  # Specifies FHIR paths to match and how to transform them. Any field that is not
1559
1568
  # matched by a FieldMetadata is passed through to the output dataset unmodified.
1560
1569
  # All extensions will be processed according to `default_keep_extensions`.
@@ -1568,6 +1577,7 @@ module Google
1568
1577
 
1569
1578
  # Update properties of this object
1570
1579
  def update!(**args)
1580
+ @default_keep_extensions = args[:default_keep_extensions] if args.key?(:default_keep_extensions)
1571
1581
  @field_metadata_list = args[:field_metadata_list] if args.key?(:field_metadata_list)
1572
1582
  end
1573
1583
  end
@@ -1775,9 +1785,9 @@ module Google
1775
1785
  # example: Patient, HumanName. For "choice" types (those defined in the FHIR
1776
1786
  # spec with the form: field[x]) we use two separate components. For example, "
1777
1787
  # deceasedAge.unit" is matched by "Deceased.Age.unit". Supported types are:
1778
- # AdministrativeGenderCode, Code, Date, DateTime, Decimal, HumanName, Id,
1779
- # LanguageCode, Markdown, Oid, String, Uri, Uuid, Xhtml. Base64Binary is also
1780
- # supported, but may only be kept as-is or have all the content removed.
1788
+ # AdministrativeGenderCode, Base64Binary, Boolean, Code, Date, DateTime, Decimal,
1789
+ # HumanName, Id, Instant, Integer, LanguageCode, Markdown, Oid, PositiveInt,
1790
+ # String, UnsignedInt, Uri, Uuid, Xhtml.
1781
1791
  # Corresponds to the JSON property `paths`
1782
1792
  # @return [Array<String>]
1783
1793
  attr_accessor :paths
@@ -3384,8 +3394,9 @@ module Google
3384
3394
  # @return [String]
3385
3395
  attr_accessor :segment_terminator
3386
3396
 
3387
- # Immutable. Determines the version of the unschematized parser to be used when `
3388
- # schema` is not given. This field is immutable after store creation.
3397
+ # Immutable. Determines the version of both the default parser to be used when `
3398
+ # schema` is not given, as well as the schematized parser used when `schema` is
3399
+ # specified. This field is immutable after HL7v2 store creation.
3389
3400
  # Corresponds to the JSON property `version`
3390
3401
  # @return [String]
3391
3402
  attr_accessor :version
@@ -3933,6 +3944,26 @@ module Google
3933
3944
  class SearchResourcesRequest
3934
3945
  include Google::Apis::Core::Hashable
3935
3946
 
3947
+ # Message that represents an arbitrary HTTP body. It should only be used for
3948
+ # payload formats that can't be represented as JSON, such as raw binary or an
3949
+ # HTML page. This message can be used both in streaming and non-streaming API
3950
+ # methods in the request as well as the response. It can be used as a top-level
3951
+ # request field, which is convenient if one wants to extract parameters from
3952
+ # either the URL or HTTP template into the request fields and also want access
3953
+ # to the raw HTTP body. Example: message GetResourceRequest ` // A unique
3954
+ # request id. string request_id = 1; // The raw HTTP body is bound to this field.
3955
+ # google.api.HttpBody http_body = 2; ` service ResourceService ` rpc
3956
+ # GetResource(GetResourceRequest) returns (google.api.HttpBody); rpc
3957
+ # UpdateResource(google.api.HttpBody) returns (google.protobuf.Empty); ` Example
3958
+ # with streaming methods: service CaldavService ` rpc GetCalendar(stream google.
3959
+ # api.HttpBody) returns (stream google.api.HttpBody); rpc UpdateCalendar(stream
3960
+ # google.api.HttpBody) returns (stream google.api.HttpBody); ` Use of this type
3961
+ # only changes how the request and response bodies are handled, all other
3962
+ # features will continue to work unchanged.
3963
+ # Corresponds to the JSON property `requestBody`
3964
+ # @return [Google::Apis::HealthcareV1::HttpBody]
3965
+ attr_accessor :request_body
3966
+
3936
3967
  # The FHIR resource type to search, such as Patient or Observation. For a
3937
3968
  # complete list, see the FHIR Resource Index ([DSTU2](http://hl7.org/implement/
3938
3969
  # standards/fhir/DSTU2/resourcelist.html), [STU3](http://hl7.org/implement/
@@ -3948,6 +3979,7 @@ module Google
3948
3979
 
3949
3980
  # Update properties of this object
3950
3981
  def update!(**args)
3982
+ @request_body = args[:request_body] if args.key?(:request_body)
3951
3983
  @resource_type = args[:resource_type] if args.key?(:resource_type)
3952
3984
  end
3953
3985
  end
@@ -4358,6 +4390,14 @@ module Google
4358
4390
  attr_accessor :disable_fhirpath_validation
4359
4391
  alias_method :disable_fhirpath_validation?, :disable_fhirpath_validation
4360
4392
 
4393
+ # Whether to disable profile validation for this FHIR store. Set this to true to
4394
+ # disable checking incoming resources for conformance against structure
4395
+ # definitions in this FHIR store.
4396
+ # Corresponds to the JSON property `disableProfileValidation`
4397
+ # @return [Boolean]
4398
+ attr_accessor :disable_profile_validation
4399
+ alias_method :disable_profile_validation?, :disable_profile_validation
4400
+
4361
4401
  # Whether to disable reference type validation for incoming resources. Set this
4362
4402
  # to true to disable checking incoming resources for conformance against
4363
4403
  # reference type requirement defined in the FHIR specification. This property
@@ -4378,6 +4418,23 @@ module Google
4378
4418
  attr_accessor :disable_required_field_validation
4379
4419
  alias_method :disable_required_field_validation?, :disable_required_field_validation
4380
4420
 
4421
+ # A list of implementation guide URLs in this FHIR store that are used to
4422
+ # configure the profiles to use for validation. For example, to use the US Core
4423
+ # profiles for validation, set `enabled_implementation_guides` to `["http://hl7.
4424
+ # org/fhir/us/core/ImplementationGuide/ig"]`. If `enabled_implementation_guides`
4425
+ # is empty or omitted, then incoming resources are only required to conform to
4426
+ # the base FHIR profiles. Otherwise, a resource must conform to at least one
4427
+ # profile listed in the `global` property of one of the enabled
4428
+ # ImplementationGuides. The Cloud Healthcare API does not currently enforce all
4429
+ # of the rules in a StructureDefinition. The following rules are supported: -
4430
+ # min/max - minValue/maxValue - maxLength - type - fixed[x] - pattern[x] on
4431
+ # simple types - slicing, when using "value" as the discriminator type When a
4432
+ # URL cannot be resolved (for example, in a type assertion), the server does not
4433
+ # return an error.
4434
+ # Corresponds to the JSON property `enabledImplementationGuides`
4435
+ # @return [Array<String>]
4436
+ attr_accessor :enabled_implementation_guides
4437
+
4381
4438
  def initialize(**args)
4382
4439
  update!(**args)
4383
4440
  end
@@ -4385,8 +4442,10 @@ module Google
4385
4442
  # Update properties of this object
4386
4443
  def update!(**args)
4387
4444
  @disable_fhirpath_validation = args[:disable_fhirpath_validation] if args.key?(:disable_fhirpath_validation)
4445
+ @disable_profile_validation = args[:disable_profile_validation] if args.key?(:disable_profile_validation)
4388
4446
  @disable_reference_type_validation = args[:disable_reference_type_validation] if args.key?(:disable_reference_type_validation)
4389
4447
  @disable_required_field_validation = args[:disable_required_field_validation] if args.key?(:disable_required_field_validation)
4448
+ @enabled_implementation_guides = args[:enabled_implementation_guides] if args.key?(:enabled_implementation_guides)
4390
4449
  end
4391
4450
  end
4392
4451
 
@@ -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.18.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 = "20211025"
25
+ REVISION = "20220211"
26
26
  end
27
27
  end
28
28
  end
@@ -1233,6 +1233,7 @@ module Google
1233
1233
  class FhirConfig
1234
1234
  # @private
1235
1235
  class Representation < Google::Apis::Core::JsonRepresentation
1236
+ property :default_keep_extensions, as: 'defaultKeepExtensions'
1236
1237
  collection :field_metadata_list, as: 'fieldMetadataList', class: Google::Apis::HealthcareV1::FieldMetadata, decorator: Google::Apis::HealthcareV1::FieldMetadata::Representation
1237
1238
 
1238
1239
  end
@@ -1877,6 +1878,8 @@ module Google
1877
1878
  class SearchResourcesRequest
1878
1879
  # @private
1879
1880
  class Representation < Google::Apis::Core::JsonRepresentation
1881
+ property :request_body, as: 'requestBody', class: Google::Apis::HealthcareV1::HttpBody, decorator: Google::Apis::HealthcareV1::HttpBody::Representation
1882
+
1880
1883
  property :resource_type, as: 'resourceType'
1881
1884
  end
1882
1885
  end
@@ -1992,8 +1995,10 @@ module Google
1992
1995
  # @private
1993
1996
  class Representation < Google::Apis::Core::JsonRepresentation
1994
1997
  property :disable_fhirpath_validation, as: 'disableFhirpathValidation'
1998
+ property :disable_profile_validation, as: 'disableProfileValidation'
1995
1999
  property :disable_reference_type_validation, as: 'disableReferenceTypeValidation'
1996
2000
  property :disable_required_field_validation, as: 'disableRequiredFieldValidation'
2001
+ collection :enabled_implementation_guides, as: 'enabledImplementationGuides'
1997
2002
  end
1998
2003
  end
1999
2004
 
@@ -274,13 +274,16 @@ module Google
274
274
  # REQUIRED: The resource for which the policy is being requested. See the
275
275
  # operation documentation for the appropriate value for this field.
276
276
  # @param [Fixnum] options_requested_policy_version
277
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
278
- # 3. Requests specifying an invalid value will be rejected. Requests for
279
- # policies with any conditional bindings must specify version 3. Policies
280
- # without any conditional bindings may specify any valid value or leave the
281
- # field unset. To learn which resources support conditions in their IAM policies,
282
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
283
- # resource-policies).
277
+ # Optional. The maximum policy version that will be used to format the policy.
278
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
279
+ # rejected. Requests for policies with any conditional role bindings must
280
+ # specify version 3. Policies with no conditional role bindings may specify any
281
+ # valid value or leave the field unset. The policy in the response might use the
282
+ # policy version that you specified, or it might use a lower policy version. For
283
+ # example, if you specify version 3, but the policy has no conditional role
284
+ # bindings, the response uses version 1. To learn which resources support
285
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
286
+ # google.com/iam/help/conditions/resource-policies).
284
287
  # @param [String] fields
285
288
  # Selector specifying which fields to include in a partial response.
286
289
  # @param [String] quota_user
@@ -637,13 +640,16 @@ module Google
637
640
  # REQUIRED: The resource for which the policy is being requested. See the
638
641
  # operation documentation for the appropriate value for this field.
639
642
  # @param [Fixnum] options_requested_policy_version
640
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
641
- # 3. Requests specifying an invalid value will be rejected. Requests for
642
- # policies with any conditional bindings must specify version 3. Policies
643
- # without any conditional bindings may specify any valid value or leave the
644
- # field unset. To learn which resources support conditions in their IAM policies,
645
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
646
- # resource-policies).
643
+ # Optional. The maximum policy version that will be used to format the policy.
644
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
645
+ # rejected. Requests for policies with any conditional role bindings must
646
+ # specify version 3. Policies with no conditional role bindings may specify any
647
+ # valid value or leave the field unset. The policy in the response might use the
648
+ # policy version that you specified, or it might use a lower policy version. For
649
+ # example, if you specify version 3, but the policy has no conditional role
650
+ # bindings, the response uses version 1. To learn which resources support
651
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
652
+ # google.com/iam/help/conditions/resource-policies).
647
653
  # @param [String] fields
648
654
  # Selector specifying which fields to include in a partial response.
649
655
  # @param [String] quota_user
@@ -2078,13 +2084,16 @@ module Google
2078
2084
  # REQUIRED: The resource for which the policy is being requested. See the
2079
2085
  # operation documentation for the appropriate value for this field.
2080
2086
  # @param [Fixnum] options_requested_policy_version
2081
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
2082
- # 3. Requests specifying an invalid value will be rejected. Requests for
2083
- # policies with any conditional bindings must specify version 3. Policies
2084
- # without any conditional bindings may specify any valid value or leave the
2085
- # field unset. To learn which resources support conditions in their IAM policies,
2086
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
2087
- # resource-policies).
2087
+ # Optional. The maximum policy version that will be used to format the policy.
2088
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
2089
+ # rejected. Requests for policies with any conditional role bindings must
2090
+ # specify version 3. Policies with no conditional role bindings may specify any
2091
+ # valid value or leave the field unset. The policy in the response might use the
2092
+ # policy version that you specified, or it might use a lower policy version. For
2093
+ # example, if you specify version 3, but the policy has no conditional role
2094
+ # bindings, the response uses version 1. To learn which resources support
2095
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
2096
+ # google.com/iam/help/conditions/resource-policies).
2088
2097
  # @param [String] fields
2089
2098
  # Selector specifying which fields to include in a partial response.
2090
2099
  # @param [String] quota_user
@@ -3379,13 +3388,16 @@ module Google
3379
3388
  # REQUIRED: The resource for which the policy is being requested. See the
3380
3389
  # operation documentation for the appropriate value for this field.
3381
3390
  # @param [Fixnum] options_requested_policy_version
3382
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
3383
- # 3. Requests specifying an invalid value will be rejected. Requests for
3384
- # policies with any conditional bindings must specify version 3. Policies
3385
- # without any conditional bindings may specify any valid value or leave the
3386
- # field unset. To learn which resources support conditions in their IAM policies,
3387
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
3388
- # resource-policies).
3391
+ # Optional. The maximum policy version that will be used to format the policy.
3392
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
3393
+ # rejected. Requests for policies with any conditional role bindings must
3394
+ # specify version 3. Policies with no conditional role bindings may specify any
3395
+ # valid value or leave the field unset. The policy in the response might use the
3396
+ # policy version that you specified, or it might use a lower policy version. For
3397
+ # example, if you specify version 3, but the policy has no conditional role
3398
+ # bindings, the response uses version 1. To learn which resources support
3399
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
3400
+ # google.com/iam/help/conditions/resource-policies).
3389
3401
  # @param [String] fields
3390
3402
  # Selector specifying which fields to include in a partial response.
3391
3403
  # @param [String] quota_user
@@ -3790,6 +3802,62 @@ module Google
3790
3802
  execute_or_queue_command(command, &block)
3791
3803
  end
3792
3804
 
3805
+ # Validates an input FHIR resource's conformance to its profiles and the
3806
+ # profiles configured on the FHIR store. Implements the FHIR extended operation $
3807
+ # validate ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/resource-
3808
+ # operations.html#validate), [STU3](http://hl7.org/implement/standards/fhir/STU3/
3809
+ # resource-operations.html#validate), or [R4](http://hl7.org/implement/standards/
3810
+ # fhir/R4/resource-operation-validate.html)). The request body must contain a
3811
+ # JSON-encoded FHIR resource, and the request headers must contain `Content-Type:
3812
+ # application/fhir+json`. The `Parameters` input syntax is not supported. The `
3813
+ # profile` query parameter can be used to request that the resource only be
3814
+ # validated against a specific profile. If a profile with the given URL cannot
3815
+ # be found in the FHIR store then an error is returned. Errors generated by
3816
+ # validation contain a JSON-encoded `OperationOutcome` resource describing the
3817
+ # reason for the error. If the request cannot be mapped to a valid API method on
3818
+ # a FHIR store, a generic GCP error might be returned instead.
3819
+ # @param [String] parent
3820
+ # The name of the FHIR store that holds the profiles being used for validation.
3821
+ # @param [String] type
3822
+ # The FHIR resource type of the resource being validated. For a complete list,
3823
+ # see the FHIR Resource Index ([DSTU2](http://hl7.org/implement/standards/fhir/
3824
+ # DSTU2/resourcelist.html), [STU3](http://hl7.org/implement/standards/fhir/STU3/
3825
+ # resourcelist.html), or [R4](http://hl7.org/implement/standards/fhir/R4/
3826
+ # resourcelist.html)). Must match the resource type in the provided content.
3827
+ # @param [Google::Apis::HealthcareV1::HttpBody] http_body_object
3828
+ # @param [String] profile
3829
+ # A profile that this resource should be validated against.
3830
+ # @param [String] fields
3831
+ # Selector specifying which fields to include in a partial response.
3832
+ # @param [String] quota_user
3833
+ # Available to use for quota purposes for server-side applications. Can be any
3834
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3835
+ # @param [Google::Apis::RequestOptions] options
3836
+ # Request-specific options
3837
+ #
3838
+ # @yield [result, err] Result & error if block supplied
3839
+ # @yieldparam result [Google::Apis::HealthcareV1::HttpBody] parsed result object
3840
+ # @yieldparam err [StandardError] error object if request failed
3841
+ #
3842
+ # @return [Google::Apis::HealthcareV1::HttpBody]
3843
+ #
3844
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3845
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3846
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3847
+ def resource_project_location_dataset_fhir_store_fhir_validate(parent, type, http_body_object = nil, profile: nil, fields: nil, quota_user: nil, options: nil, &block)
3848
+ command = make_simple_command(:post, 'v1/{+parent}/fhir/{+type}/$validate', options)
3849
+ command.request_representation = Google::Apis::HealthcareV1::HttpBody::Representation
3850
+ command.request_object = http_body_object
3851
+ command.response_representation = Google::Apis::HealthcareV1::HttpBody::Representation
3852
+ command.response_class = Google::Apis::HealthcareV1::HttpBody
3853
+ command.params['parent'] = parent unless parent.nil?
3854
+ command.params['type'] = type unless type.nil?
3855
+ command.query['profile'] = profile unless profile.nil?
3856
+ command.query['fields'] = fields unless fields.nil?
3857
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3858
+ execute_or_queue_command(command, &block)
3859
+ end
3860
+
3793
3861
  # Gets the FHIR capability statement ([STU3](http://hl7.org/implement/standards/
3794
3862
  # fhir/STU3/capabilitystatement.html), [R4](http://hl7.org/implement/standards/
3795
3863
  # fhir/R4/capabilitystatement.html)), or the [conformance statement](http://hl7.
@@ -4531,13 +4599,16 @@ module Google
4531
4599
  # REQUIRED: The resource for which the policy is being requested. See the
4532
4600
  # operation documentation for the appropriate value for this field.
4533
4601
  # @param [Fixnum] options_requested_policy_version
4534
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
4535
- # 3. Requests specifying an invalid value will be rejected. Requests for
4536
- # policies with any conditional bindings must specify version 3. Policies
4537
- # without any conditional bindings may specify any valid value or leave the
4538
- # field unset. To learn which resources support conditions in their IAM policies,
4539
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
4540
- # resource-policies).
4602
+ # Optional. The maximum policy version that will be used to format the policy.
4603
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
4604
+ # rejected. Requests for policies with any conditional role bindings must
4605
+ # specify version 3. Policies with no conditional role bindings may specify any
4606
+ # valid value or leave the field unset. The policy in the response might use the
4607
+ # policy version that you specified, or it might use a lower policy version. For
4608
+ # example, if you specify version 3, but the policy has no conditional role
4609
+ # bindings, the response uses version 1. To learn which resources support
4610
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
4611
+ # google.com/iam/help/conditions/resource-policies).
4541
4612
  # @param [String] fields
4542
4613
  # Selector specifying which fields to include in a partial response.
4543
4614
  # @param [String] quota_user
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.18.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-11-08 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.21.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: []
@@ -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 V1