google-apis-healthcare_v1beta1 0.45.0 → 0.46.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: 7eef4d65c523579d3f29aae3e1f19ab8d10d299ea3b7d959cd43be3d53f071e5
4
- data.tar.gz: bd8aeb24fc252a7e3dfe60279eaf68460433e9687364092e331972f19f283954
3
+ metadata.gz: 7acfb369510a50debc57640c3300a9a49ed54bb72fa5f99d777cfd582437fa0d
4
+ data.tar.gz: 73683c2ef80e189e3b2ced81b5e03cf0ae17019a2bdecf8bb4e9f6b5ec4ccec1
5
5
  SHA512:
6
- metadata.gz: c7a7b79395e5bcf2921f86c345a3f1b7f21a2b46e48655c00804305f80ee044f53c45d73ac18b92b5d3702ef877b86035526e46d3f18ddaa8cef65dfcf3d2e7e
7
- data.tar.gz: 115d70c74a8bb5651122a0922b5721b05ceb33b31cbe756b125f7e1da01aea06059a3924ca8eb21919a809cdf2cd89c5721b6d41fe0f0f052ddb0df47e68fb30
6
+ metadata.gz: 756c0fac388183731b2192e95b7c23c764c20b278aaa8a8a7f507356016e4ebed056c215ec627ebaa5d61262c2f6736bdb1ff5dafa779914d22b93545575ceb1
7
+ data.tar.gz: 18e70fd5d59b378774fe1a58e5d1a94ee5b1ba6d444174e55dbf592dbc08381058875dcd3b10b9da60f22b153a0bbcfa82639dc154c07b8709e644d87a892074
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.46.0 (2023-04-30)
4
+
5
+ * Regenerated from discovery document revision 20230412
6
+
3
7
  ### v0.45.0 (2023-04-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20230321
@@ -2425,6 +2425,18 @@ module Google
2425
2425
  attr_accessor :send_full_resource
2426
2426
  alias_method :send_full_resource?, :send_full_resource
2427
2427
 
2428
+ # Whether to send full FHIR resource to this pubsub topic for deleting FHIR
2429
+ # resource. Note that setting this to true does not guarantee that all previous
2430
+ # resources will be sent in the format of full FHIR resource. When a resource
2431
+ # change is too large or during heavy traffic, only the resource name will be
2432
+ # sent. Clients should always check the "payloadType" label from a Pub/Sub
2433
+ # message to determine whether it needs to fetch the full previous resource as a
2434
+ # separate operation.
2435
+ # Corresponds to the JSON property `sendPreviousResourceOnDelete`
2436
+ # @return [Boolean]
2437
+ attr_accessor :send_previous_resource_on_delete
2438
+ alias_method :send_previous_resource_on_delete?, :send_previous_resource_on_delete
2439
+
2428
2440
  def initialize(**args)
2429
2441
  update!(**args)
2430
2442
  end
@@ -2433,6 +2445,7 @@ module Google
2433
2445
  def update!(**args)
2434
2446
  @pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
2435
2447
  @send_full_resource = args[:send_full_resource] if args.key?(:send_full_resource)
2448
+ @send_previous_resource_on_delete = args[:send_previous_resource_on_delete] if args.key?(:send_previous_resource_on_delete)
2436
2449
  end
2437
2450
  end
2438
2451
 
@@ -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.45.0"
19
+ GEM_VERSION = "0.46.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 = "20230321"
25
+ REVISION = "20230412"
26
26
  end
27
27
  end
28
28
  end
@@ -1853,6 +1853,7 @@ module Google
1853
1853
  class Representation < Google::Apis::Core::JsonRepresentation
1854
1854
  property :pubsub_topic, as: 'pubsubTopic'
1855
1855
  property :send_full_resource, as: 'sendFullResource'
1856
+ property :send_previous_resource_on_delete, as: 'sendPreviousResourceOnDelete'
1856
1857
  end
1857
1858
  end
1858
1859
 
@@ -4681,10 +4681,10 @@ 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
4684
+ # Lists all the resources that directly refer to the given target FHIR resource.
4685
+ # Can also support the case when the target resource doesn't exist, for example,
4686
+ # if the target has been deleted. On success, the response body contains a
4687
+ # Bundle with type `searchset`, where each entry in the Bundle contains the full
4688
4688
  # content of the resource. If the operation fails, an `OperationOutcome` is
4689
4689
  # returned describing the failure. If the request cannot be mapped to a valid
4690
4690
  # API method on a FHIR store, a generic Google Cloud error might be returned
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.45.0
4
+ version: 0.46.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-04-02 00:00:00.000000000 Z
11
+ date: 2023-04-30 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.45.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.46.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: []