google-apis-healthcare_v1 0.20.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: 7912e71eebd4a7fdf3e477333a9112297347710eff816b8173ecfa56d038bd18
4
- data.tar.gz: 11e5ca19cb79d02ae59f4ef3aabfcc5c04b70d0565e318655021f99e82e9fa99
3
+ metadata.gz: ed5ac8791bc09c1d45e5d4b489b249093e756d18eb5f5be4b8e46e3a7e356a8a
4
+ data.tar.gz: aaca0e4d4051a6b63031ec2597b79fdd6c4586ee2f2b03095bddaf7c1da5bd2e
5
5
  SHA512:
6
- metadata.gz: e5c902a68c979bff39c77af8846930dfc29e67719a977200eabca756e33aa3b74f8392463f6bac8a81b233480627344ca68b3f4d60a618b01414b9498357d28c
7
- data.tar.gz: b07899b94f35620b2e91756f1509581e8d33288b326d04bc4afa0009792930f34db7be89c2257bbba2481b0b032f454c20a553987501adc9ebedfffa1689bfab
6
+ metadata.gz: 05d91461973ac51065139891cfb68ba2f9bd77db4851a05e736b180e66e148849dffe32ca098bdd995c92675cfd4ee3e02c8cb00d534b8daa410b557ff5c8c55
7
+ data.tar.gz: 789746213a6cf82cdf588a23eec56811e74865ec00791a7a982807d36b710f02691356a2cfd2bbec7aaea457a01a713160e595fa84af49cc833eabf1e4d0af3e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.20.0 (2022-01-05)
4
9
 
5
10
  * Regenerated from discovery document revision 20220104
@@ -3944,6 +3944,26 @@ module Google
3944
3944
  class SearchResourcesRequest
3945
3945
  include Google::Apis::Core::Hashable
3946
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
+
3947
3967
  # The FHIR resource type to search, such as Patient or Observation. For a
3948
3968
  # complete list, see the FHIR Resource Index ([DSTU2](http://hl7.org/implement/
3949
3969
  # standards/fhir/DSTU2/resourcelist.html), [STU3](http://hl7.org/implement/
@@ -3959,6 +3979,7 @@ module Google
3959
3979
 
3960
3980
  # Update properties of this object
3961
3981
  def update!(**args)
3982
+ @request_body = args[:request_body] if args.key?(:request_body)
3962
3983
  @resource_type = args[:resource_type] if args.key?(:resource_type)
3963
3984
  end
3964
3985
  end
@@ -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.20.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 = "20220104"
25
+ REVISION = "20220211"
26
26
  end
27
27
  end
28
28
  end
@@ -1878,6 +1878,8 @@ module Google
1878
1878
  class SearchResourcesRequest
1879
1879
  # @private
1880
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
+
1881
1883
  property :resource_type, as: 'resourceType'
1882
1884
  end
1883
1885
  end
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.20.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: 2022-01-10 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.20.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.3.4
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