google-apis-healthcare_v1 0.21.0 → 0.24.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: ed5ac8791bc09c1d45e5d4b489b249093e756d18eb5f5be4b8e46e3a7e356a8a
4
- data.tar.gz: aaca0e4d4051a6b63031ec2597b79fdd6c4586ee2f2b03095bddaf7c1da5bd2e
3
+ metadata.gz: 5a32c5f700d5f417f04c558a5c40a1b510d82e93da36527446331775e97a82e3
4
+ data.tar.gz: 4439e7b005f26aa48441a360dcf20fdd47de27e9b8a0a735e2ec6a09a836423a
5
5
  SHA512:
6
- metadata.gz: 05d91461973ac51065139891cfb68ba2f9bd77db4851a05e736b180e66e148849dffe32ca098bdd995c92675cfd4ee3e02c8cb00d534b8daa410b557ff5c8c55
7
- data.tar.gz: 789746213a6cf82cdf588a23eec56811e74865ec00791a7a982807d36b710f02691356a2cfd2bbec7aaea457a01a713160e595fa84af49cc833eabf1e4d0af3e
6
+ metadata.gz: b89267703e2710c1e74515097e294a4f1d25f01458932055e6d3ba6c868ba90ea9129f988fdec19c18e6c0c0edacb45b79159d40aee87f4412ce669c0dcd0a62
7
+ data.tar.gz: c791f84e3bfe7acf0cbe1d63d41ff319e56e101559787bb92be1316b7353f94d01ab8a55380b2cd81d6f305266059c991824827f1015fddb363806cbcd8c1896
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-healthcare_v1
2
2
 
3
+ ### v0.24.0 (2022-04-14)
4
+
5
+ * Regenerated from discovery document revision 20220404
6
+
7
+ ### v0.23.0 (2022-03-10)
8
+
9
+ * Regenerated from discovery document revision 20220224
10
+
11
+ ### v0.22.0 (2022-03-03)
12
+
13
+ * Regenerated from discovery document revision 20220223
14
+
3
15
  ### v0.21.0 (2022-02-23)
4
16
 
5
17
  * Regenerated from discovery document revision 20220211
@@ -1091,8 +1091,7 @@ module Google
1091
1091
  # A generic empty message that you can re-use to avoid defining duplicated empty
1092
1092
  # messages in your APIs. A typical example is to use it as the request or the
1093
1093
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
1094
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
1095
- # `Empty` is empty JSON object ````.
1094
+ # protobuf.Empty) returns (google.protobuf.Empty); `
1096
1095
  class Empty
1097
1096
  include Google::Apis::Core::Hashable
1098
1097
 
@@ -1435,6 +1434,20 @@ module Google
1435
1434
  class ExportResourcesRequest
1436
1435
  include Google::Apis::Core::Hashable
1437
1436
 
1437
+ # If provided, only resources updated after this time are exported. The time
1438
+ # uses the format YYYY-MM-DDThh:mm:ss.sss+zz:zz. For example, `2015-02-07T13:28:
1439
+ # 17.239+02:00` or `2017-01-01T00:00:00Z`. The time must be specified to the
1440
+ # second and include a time zone.
1441
+ # Corresponds to the JSON property `_since`
1442
+ # @return [String]
1443
+ attr_accessor :_since
1444
+
1445
+ # String of comma-delimited FHIR resource types. If provided, only resources of
1446
+ # the specified resource type(s) are exported.
1447
+ # Corresponds to the JSON property `_type`
1448
+ # @return [String]
1449
+ attr_accessor :_type
1450
+
1438
1451
  # The configuration for exporting to BigQuery.
1439
1452
  # Corresponds to the JSON property `bigqueryDestination`
1440
1453
  # @return [Google::Apis::HealthcareV1::GoogleCloudHealthcareV1FhirBigQueryDestination]
@@ -1451,6 +1464,8 @@ module Google
1451
1464
 
1452
1465
  # Update properties of this object
1453
1466
  def update!(**args)
1467
+ @_since = args[:_since] if args.key?(:_since)
1468
+ @_type = args[:_type] if args.key?(:_type)
1454
1469
  @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
1455
1470
  @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
1456
1471
  end
@@ -3944,26 +3959,6 @@ module Google
3944
3959
  class SearchResourcesRequest
3945
3960
  include Google::Apis::Core::Hashable
3946
3961
 
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
-
3967
3962
  # The FHIR resource type to search, such as Patient or Observation. For a
3968
3963
  # complete list, see the FHIR Resource Index ([DSTU2](http://hl7.org/implement/
3969
3964
  # standards/fhir/DSTU2/resourcelist.html), [STU3](http://hl7.org/implement/
@@ -3979,7 +3974,6 @@ module Google
3979
3974
 
3980
3975
  # Update properties of this object
3981
3976
  def update!(**args)
3982
- @request_body = args[:request_body] if args.key?(:request_body)
3983
3977
  @resource_type = args[:resource_type] if args.key?(:resource_type)
3984
3978
  end
3985
3979
  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.21.0"
19
+ GEM_VERSION = "0.24.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220211"
25
+ REVISION = "20220404"
26
26
  end
27
27
  end
28
28
  end
@@ -1199,6 +1199,8 @@ module Google
1199
1199
  class ExportResourcesRequest
1200
1200
  # @private
1201
1201
  class Representation < Google::Apis::Core::JsonRepresentation
1202
+ property :_since, as: '_since'
1203
+ property :_type, as: '_type'
1202
1204
  property :bigquery_destination, as: 'bigqueryDestination', class: Google::Apis::HealthcareV1::GoogleCloudHealthcareV1FhirBigQueryDestination, decorator: Google::Apis::HealthcareV1::GoogleCloudHealthcareV1FhirBigQueryDestination::Representation
1203
1205
 
1204
1206
  property :gcs_destination, as: 'gcsDestination', class: Google::Apis::HealthcareV1::GoogleCloudHealthcareV1FhirGcsDestination, decorator: Google::Apis::HealthcareV1::GoogleCloudHealthcareV1FhirGcsDestination::Representation
@@ -1878,8 +1880,6 @@ module Google
1878
1880
  class SearchResourcesRequest
1879
1881
  # @private
1880
1882
  class Representation < Google::Apis::Core::JsonRepresentation
1881
- property :request_body, as: 'requestBody', class: Google::Apis::HealthcareV1::HttpBody, decorator: Google::Apis::HealthcareV1::HttpBody::Representation
1882
-
1883
1883
  property :resource_type, as: 'resourceType'
1884
1884
  end
1885
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.21.0
4
+ version: 0.24.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-02-28 00:00:00.000000000 Z
11
+ date: 2022-04-18 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.21.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.24.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: []