google-apis-healthcare_v1beta1 0.44.0 → 0.45.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/healthcare_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/healthcare_v1beta1/service.rb +91 -30
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7eef4d65c523579d3f29aae3e1f19ab8d10d299ea3b7d959cd43be3d53f071e5
|
4
|
+
data.tar.gz: bd8aeb24fc252a7e3dfe60279eaf68460433e9687364092e331972f19f283954
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7a7b79395e5bcf2921f86c345a3f1b7f21a2b46e48655c00804305f80ee044f53c45d73ac18b92b5d3702ef877b86035526e46d3f18ddaa8cef65dfcf3d2e7e
|
7
|
+
data.tar.gz: 115d70c74a8bb5651122a0922b5721b05ceb33b31cbe756b125f7e1da01aea06059a3924ca8eb21919a809cdf2cd89c5721b6d41fe0f0f052ddb0df47e68fb30
|
data/CHANGELOG.md
CHANGED
@@ -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
|
+
GEM_VERSION = "0.45.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230321"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4681,6 +4681,71 @@ module Google
|
|
4681
4681
|
execute_or_queue_command(command, &block)
|
4682
4682
|
end
|
4683
4683
|
|
4684
|
+
# Gets all incoming references to a given target FHIR resource. Can also get all
|
4685
|
+
# incoming references when the target resource does not exist, for example, if
|
4686
|
+
# the target has been deleted. On success, the response body contains a Bundle
|
4687
|
+
# with type `searchset`, where each entry in the Bundle contains the full
|
4688
|
+
# content of the resource. If the operation fails, an `OperationOutcome` is
|
4689
|
+
# returned describing the failure. If the request cannot be mapped to a valid
|
4690
|
+
# API method on a FHIR store, a generic Google Cloud error might be returned
|
4691
|
+
# instead.
|
4692
|
+
# @param [String] parent
|
4693
|
+
# Required. The name of the FHIR store that holds the target resource.
|
4694
|
+
# @param [Fixnum] _count
|
4695
|
+
# Maximum number of resources in a page. If not specified, 100 is used. May not
|
4696
|
+
# be larger than 1000.
|
4697
|
+
# @param [String] _page_token
|
4698
|
+
# Used to retrieve the next page of results when using pagination. Set `
|
4699
|
+
# _page_token` to the value of _page_token set in next page links' url. Next
|
4700
|
+
# page are returned in the response bundle's links field, where `link.relation`
|
4701
|
+
# is "next". Omit `_page_token` if no previous request has been made.
|
4702
|
+
# @param [String] _summary
|
4703
|
+
# Used to simplify the representation of the returned resources. `_summary=text`
|
4704
|
+
# returns only the `text`, `id`, and `meta` top-level fields. `_summary=data`
|
4705
|
+
# removes the `text` field and returns all other fields. `_summary=false`
|
4706
|
+
# returns all parts of the resource(s). Either not providing this parameter or
|
4707
|
+
# providing an empty value to this parameter also returns all parts of the
|
4708
|
+
# resource(s).
|
4709
|
+
# @param [String] _type
|
4710
|
+
# String of comma-delimited FHIR resource types. If provided, only resources of
|
4711
|
+
# the specified resource type(s) are returned. If not provided or an empty value
|
4712
|
+
# is provided, no filter on the returned resource type(s) is applied.
|
4713
|
+
# @param [String] target
|
4714
|
+
# Required. The target whose incoming references are requested. This param is
|
4715
|
+
# required and must not be empty. It uses the format "ResourceType/ResourceID",
|
4716
|
+
# for example, target=ResourceType/ResourceID.
|
4717
|
+
# @param [String] fields
|
4718
|
+
# Selector specifying which fields to include in a partial response.
|
4719
|
+
# @param [String] quota_user
|
4720
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
4721
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
4722
|
+
# @param [Google::Apis::RequestOptions] options
|
4723
|
+
# Request-specific options
|
4724
|
+
#
|
4725
|
+
# @yield [result, err] Result & error if block supplied
|
4726
|
+
# @yieldparam result [Google::Apis::HealthcareV1beta1::HttpBody] parsed result object
|
4727
|
+
# @yieldparam err [StandardError] error object if request failed
|
4728
|
+
#
|
4729
|
+
# @return [Google::Apis::HealthcareV1beta1::HttpBody]
|
4730
|
+
#
|
4731
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
4732
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
4733
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
4734
|
+
def resource_project_location_dataset_fhir_store_fhir_incoming_references(parent, _count: nil, _page_token: nil, _summary: nil, _type: nil, target: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4735
|
+
command = make_simple_command(:get, 'v1beta1/{+parent}/fhir/$references', options)
|
4736
|
+
command.response_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
4737
|
+
command.response_class = Google::Apis::HealthcareV1beta1::HttpBody
|
4738
|
+
command.params['parent'] = parent unless parent.nil?
|
4739
|
+
command.query['_count'] = _count unless _count.nil?
|
4740
|
+
command.query['_page_token'] = _page_token unless _page_token.nil?
|
4741
|
+
command.query['_summary'] = _summary unless _summary.nil?
|
4742
|
+
command.query['_type'] = _type unless _type.nil?
|
4743
|
+
command.query['target'] = target unless target.nil?
|
4744
|
+
command.query['fields'] = fields unless fields.nil?
|
4745
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
4746
|
+
execute_or_queue_command(command, &block)
|
4747
|
+
end
|
4748
|
+
|
4684
4749
|
# Deletes all the historical versions of a resource (excluding the current
|
4685
4750
|
# version) from the FHIR store. To remove all versions of a resource, first
|
4686
4751
|
# delete the current version and then call this method. This is not a FHIR
|
@@ -5361,17 +5426,18 @@ module Google
|
|
5361
5426
|
# _count`, `_include`, `_revinclude`, `_summary=text`, `_summary=data`, and `
|
5362
5427
|
# _elements`. The maximum number of search results returned defaults to 100,
|
5363
5428
|
# which can be overridden by the `_count` parameter up to a maximum limit of
|
5364
|
-
# 1000.
|
5365
|
-
#
|
5366
|
-
#
|
5367
|
-
#
|
5368
|
-
#
|
5369
|
-
#
|
5370
|
-
#
|
5371
|
-
#
|
5372
|
-
#
|
5373
|
-
#
|
5374
|
-
# com/healthcare/docs/how-tos/fhir-
|
5429
|
+
# 1000. The server might return fewer resources than requested to prevent
|
5430
|
+
# excessively large responses. If there are additional results, the returned `
|
5431
|
+
# Bundle` contains a link of `relation` "next", which has a `_page_token`
|
5432
|
+
# parameter for an opaque pagination token that can be used to retrieve the next
|
5433
|
+
# page. Resources with a total size larger than 5MB or a field count larger than
|
5434
|
+
# 50,000 might not be fully searchable as the server might trim its generated
|
5435
|
+
# search index in those cases. Note: FHIR resources are indexed asynchronously,
|
5436
|
+
# so there might be a slight delay between the time a resource is created or
|
5437
|
+
# changes and when the change is reflected in search results. For samples and
|
5438
|
+
# detailed information, see [Searching for FHIR resources](https://cloud.google.
|
5439
|
+
# com/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](
|
5440
|
+
# https://cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
|
5375
5441
|
# @param [String] parent
|
5376
5442
|
# Name of the FHIR store to retrieve resources from.
|
5377
5443
|
# @param [Google::Apis::HealthcareV1beta1::SearchResourcesRequest] search_resources_request_object
|
@@ -5438,17 +5504,18 @@ module Google
|
|
5438
5504
|
# _count`, `_include`, `_revinclude`, `_summary=text`, `_summary=data`, and `
|
5439
5505
|
# _elements`. The maximum number of search results returned defaults to 100,
|
5440
5506
|
# which can be overridden by the `_count` parameter up to a maximum limit of
|
5441
|
-
# 1000.
|
5442
|
-
#
|
5443
|
-
#
|
5444
|
-
#
|
5445
|
-
#
|
5446
|
-
#
|
5447
|
-
#
|
5448
|
-
#
|
5449
|
-
#
|
5450
|
-
#
|
5451
|
-
# com/healthcare/docs/how-tos/fhir-
|
5507
|
+
# 1000. The server might return fewer resources than requested to prevent
|
5508
|
+
# excessively large responses. If there are additional results, the returned `
|
5509
|
+
# Bundle` contains a link of `relation` "next", which has a `_page_token`
|
5510
|
+
# parameter for an opaque pagination token that can be used to retrieve the next
|
5511
|
+
# page. Resources with a total size larger than 5MB or a field count larger than
|
5512
|
+
# 50,000 might not be fully searchable as the server might trim its generated
|
5513
|
+
# search index in those cases. Note: FHIR resources are indexed asynchronously,
|
5514
|
+
# so there might be a slight delay between the time a resource is created or
|
5515
|
+
# changes and when the change is reflected in search results. For samples and
|
5516
|
+
# detailed information, see [Searching for FHIR resources](https://cloud.google.
|
5517
|
+
# com/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](
|
5518
|
+
# https://cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
|
5452
5519
|
# @param [String] parent
|
5453
5520
|
# Name of the FHIR store to retrieve resources from.
|
5454
5521
|
# @param [String] resource_type
|
@@ -6044,7 +6111,7 @@ module Google
|
|
6044
6111
|
# adapter is configured to listen to a Pub/Sub topic, the adapter transmits the
|
6045
6112
|
# message when a notification is received.
|
6046
6113
|
# @param [String] parent
|
6047
|
-
# The name of the
|
6114
|
+
# The name of the HL7v2 store this message belongs to.
|
6048
6115
|
# @param [Google::Apis::HealthcareV1beta1::CreateMessageRequest] create_message_request_object
|
6049
6116
|
# @param [String] fields
|
6050
6117
|
# Selector specifying which fields to include in a partial response.
|
@@ -6386,13 +6453,7 @@ module Google
|
|
6386
6453
|
end
|
6387
6454
|
|
6388
6455
|
# Lists operations that match the specified filter in the request. If the server
|
6389
|
-
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
6390
|
-
# binding allows API services to override the binding to use different resource
|
6391
|
-
# name schemes, such as `users/*/operations`. To override the binding, API
|
6392
|
-
# services can add a binding such as `"/v1/`name=users/*`/operations"` to their
|
6393
|
-
# service configuration. For backwards compatibility, the default name includes
|
6394
|
-
# the operations collection id, however overriding users must ensure the name
|
6395
|
-
# binding is the parent resource, without the operations collection id.
|
6456
|
+
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
6396
6457
|
# @param [String] name
|
6397
6458
|
# The name of the operation's parent resource.
|
6398
6459
|
# @param [String] filter
|
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.
|
4
|
+
version: 0.45.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: 2023-
|
11
|
+
date: 2023-04-02 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.45.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: []
|