google-apis-healthcare_v1beta1 0.56.0 → 0.58.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: f37f1ee250be74bd390d34084d90873153305f42d2ba87b185627b009e2c67bc
4
- data.tar.gz: 69b6cd156f006d3b9703f930f3140a04df5f72af56a079afee10f038930d7e41
3
+ metadata.gz: b290bec5221169aff70fe24479dbdb51a9fda7cb102606220f635d357619fcd1
4
+ data.tar.gz: 88f696b4fdcde91413f0f70edbff00e65821ece3b0c09a08dfab64b583c4e1e3
5
5
  SHA512:
6
- metadata.gz: e9fbea24ada856115910f0a2763d78720b02d6ef56a186d5c1a7a278a739f0bb92a2b37551034f90da2343415a4a310ebec8dbb270d5fb4cee4cba8b9634857b
7
- data.tar.gz: ec75c627cb6bfbed90124c3ada01f5a53ccd04c0a9485c48bf12b5c5250cc8f62f09822f19e76b7891cf5593a6e8f82639efaf2df3e84b77bd05e97e2b9fe75e
6
+ metadata.gz: bc740884d295db6b219e75dea52f2ea7fdbc573be9db13e2b1da055d92a6624f355756b058455020f89d79524fc6b949e21849b4feb52b909e44bc10b0f8b0a2
7
+ data.tar.gz: ffc692116971ffbc626e94c45b65483af35cd891440589d1f7402ff95fbac715b5404e5c133765834c7980cf3b8c68e362f2f7020a5d505724b41eaaf7e063bf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.58.0 (2023-10-22)
4
+
5
+ * Regenerated from discovery document revision 20231017
6
+
7
+ ### v0.57.0 (2023-10-15)
8
+
9
+ * Regenerated from discovery document revision 20231003
10
+
3
11
  ### v0.56.0 (2023-10-01)
4
12
 
5
13
  * Regenerated from discovery document revision 20230921
@@ -2005,6 +2005,56 @@ module Google
2005
2005
  end
2006
2006
  end
2007
2007
 
2008
+ # DicomStoreMetrics contains metrics describing a DICOM store.
2009
+ class DicomStoreMetrics
2010
+ include Google::Apis::Core::Hashable
2011
+
2012
+ # Total blob storage bytes for all instances in the store.
2013
+ # Corresponds to the JSON property `blobStorageSizeBytes`
2014
+ # @return [Fixnum]
2015
+ attr_accessor :blob_storage_size_bytes
2016
+
2017
+ # Number of instances in the store.
2018
+ # Corresponds to the JSON property `instanceCount`
2019
+ # @return [Fixnum]
2020
+ attr_accessor :instance_count
2021
+
2022
+ # Resource name of the DICOM store, of the form `projects/`project_id`/locations/
2023
+ # `location_id`/datasets/`dataset_id`/dicomStores/`dicom_store_id``.
2024
+ # Corresponds to the JSON property `name`
2025
+ # @return [String]
2026
+ attr_accessor :name
2027
+
2028
+ # Number of series in the store.
2029
+ # Corresponds to the JSON property `seriesCount`
2030
+ # @return [Fixnum]
2031
+ attr_accessor :series_count
2032
+
2033
+ # Total structured storage bytes for all instances in the store.
2034
+ # Corresponds to the JSON property `structuredStorageSizeBytes`
2035
+ # @return [Fixnum]
2036
+ attr_accessor :structured_storage_size_bytes
2037
+
2038
+ # Number of studies in the store.
2039
+ # Corresponds to the JSON property `studyCount`
2040
+ # @return [Fixnum]
2041
+ attr_accessor :study_count
2042
+
2043
+ def initialize(**args)
2044
+ update!(**args)
2045
+ end
2046
+
2047
+ # Update properties of this object
2048
+ def update!(**args)
2049
+ @blob_storage_size_bytes = args[:blob_storage_size_bytes] if args.key?(:blob_storage_size_bytes)
2050
+ @instance_count = args[:instance_count] if args.key?(:instance_count)
2051
+ @name = args[:name] if args.key?(:name)
2052
+ @series_count = args[:series_count] if args.key?(:series_count)
2053
+ @structured_storage_size_bytes = args[:structured_storage_size_bytes] if args.key?(:structured_storage_size_bytes)
2054
+ @study_count = args[:study_count] if args.key?(:study_count)
2055
+ end
2056
+ end
2057
+
2008
2058
  # Specifies the parameters needed for the de-identification of DICOM stores.
2009
2059
  class DicomTagConfig
2010
2060
  include Google::Apis::Core::Hashable
@@ -2463,42 +2513,41 @@ module Google
2463
2513
  attr_accessor :end_time
2464
2514
 
2465
2515
  # Restricts messages exported to those matching a filter, only applicable to
2466
- # PubsubDestination and GcsDestination. The following syntax is available: * A
2467
- # string field value can be written as text inside quotation marks, for example `
2468
- # "query text"`. The only valid relational operation for text fields is equality
2469
- # (`=`), where text is searched within the field, rather than having the field
2470
- # be equal to the text. For example, `"Comment = great"` returns messages with `
2471
- # great` in the comment field. * A number field value can be written as an
2472
- # integer, a decimal, or an exponential. The valid relational operators for
2473
- # number fields are the equality operator (`=`), along with the less than/
2474
- # greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
2475
- # inequality (`!=`) operator. You can prepend the `NOT` operator to an
2476
- # expression to negate it. * A date field value must be written in the `yyyy-mm-
2477
- # dd` format. Fields with date and time use the RFC3339 time format. Leading
2478
- # zeros are required for one-digit months and days. The valid relational
2479
- # operators for date fields are the equality operator (`=`) , along with the
2480
- # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
2481
- # inequality (`!=`) operator. You can prepend the `NOT` operator to an
2482
- # expression to negate it. * Multiple field query expressions can be combined in
2483
- # one query by adding `AND` or `OR` operators between the expressions. If a
2484
- # boolean operator appears within a quoted string, it is not treated as special,
2485
- # and is just another part of the character string to be matched. You can
2486
- # prepend the `NOT` operator to an expression to negate it. The following fields
2487
- # and functions are available for filtering: * `message_type`, from the MSH-9.1
2488
- # field. For example, `NOT message_type = "ADT"`. * `send_date` or `sendDate`,
2489
- # the YYYY-MM-DD date the message was sent in the dataset's time_zone, from the
2490
- # MSH-7 segment. For example, `send_date < "2017-01-02"`. * `send_time`, the
2491
- # timestamp when the message was sent, using the RFC3339 time format for
2492
- # comparisons, from the MSH-7 segment. For example, `send_time < "2017-01-02T00:
2493
- # 00:00-05:00"`. * `create_time`, the timestamp when the message was created in
2494
- # the HL7v2 store. Use the RFC3339 time format for comparisons. For example, `
2495
- # create_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`, the care center
2496
- # that the message came from, from the MSH-4 segment. For example, `
2497
- # send_facility = "ABC"`. Note: The filter will be applied to every message in
2498
- # the HL7v2 store whose `send_time` lies in the range defined by the `start_time`
2499
- # and the `end_time`. Even if the filter only matches a small set of messages,
2500
- # the export operation can still take a long time to finish when a lot of
2501
- # messages are between the specified `start_time` and `end_time` range.
2516
+ # PubsubDestination. The following syntax is available: * A string field value
2517
+ # can be written as text inside quotation marks, for example `"query text"`. The
2518
+ # only valid relational operation for text fields is equality (`=`), where text
2519
+ # is searched within the field, rather than having the field be equal to the
2520
+ # text. For example, `"Comment = great"` returns messages with `great` in the
2521
+ # comment field. * A number field value can be written as an integer, a decimal,
2522
+ # or an exponential. The valid relational operators for number fields are the
2523
+ # equality operator (`=`), along with the less than/greater than operators (`<`,
2524
+ # `<=`, `>`, `>=`). Note that there is no inequality (`!=`) operator. You can
2525
+ # prepend the `NOT` operator to an expression to negate it. * A date field value
2526
+ # must be written in the `yyyy-mm-dd` format. Fields with date and time use the
2527
+ # RFC3339 time format. Leading zeros are required for one-digit months and days.
2528
+ # The valid relational operators for date fields are the equality operator (`=`)
2529
+ # , along with the less than/greater than operators (`<`, `<=`, `>`, `>=`). Note
2530
+ # that there is no inequality (`!=`) operator. You can prepend the `NOT`
2531
+ # operator to an expression to negate it. * Multiple field query expressions can
2532
+ # be combined in one query by adding `AND` or `OR` operators between the
2533
+ # expressions. If a boolean operator appears within a quoted string, it is not
2534
+ # treated as special, and is just another part of the character string to be
2535
+ # matched. You can prepend the `NOT` operator to an expression to negate it. The
2536
+ # following fields and functions are available for filtering: * `message_type`,
2537
+ # from the MSH-9.1 field. For example, `NOT message_type = "ADT"`. * `send_date`
2538
+ # or `sendDate`, the YYYY-MM-DD date the message was sent in the dataset's
2539
+ # time_zone, from the MSH-7 segment. For example, `send_date < "2017-01-02"`. * `
2540
+ # send_time`, the timestamp when the message was sent, using the RFC3339 time
2541
+ # format for comparisons, from the MSH-7 segment. For example, `send_time < "
2542
+ # 2017-01-02T00:00:00-05:00"`. * `create_time`, the timestamp when the message
2543
+ # was created in the HL7v2 store. Use the RFC3339 time format for comparisons.
2544
+ # For example, `create_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`,
2545
+ # the care center that the message came from, from the MSH-4 segment. For
2546
+ # example, `send_facility = "ABC"`. Note: The filter will be applied to every
2547
+ # message in the HL7v2 store whose `send_time` lies in the range defined by the `
2548
+ # start_time` and the `end_time`. Even if the filter only matches a small set of
2549
+ # messages, the export operation can still take a long time to finish when a lot
2550
+ # of messages are between the specified `start_time` and `end_time` range.
2502
2551
  # Corresponds to the JSON property `filter`
2503
2552
  # @return [String]
2504
2553
  attr_accessor :filter
@@ -4073,6 +4122,64 @@ module Google
4073
4122
  end
4074
4123
  end
4075
4124
 
4125
+ # Count of messages and total storage size by type for a given HL7 store.
4126
+ class Hl7V2StoreMetric
4127
+ include Google::Apis::Core::Hashable
4128
+
4129
+ # The total count of HL7v2 messages in the store for the given message type.
4130
+ # Corresponds to the JSON property `count`
4131
+ # @return [Fixnum]
4132
+ attr_accessor :count
4133
+
4134
+ # The Hl7v2 message type this metric applies to, such as `ADT` or `ORU`.
4135
+ # Corresponds to the JSON property `messageType`
4136
+ # @return [String]
4137
+ attr_accessor :message_type
4138
+
4139
+ # The total amount of structured storage used by HL7v2 messages of this message
4140
+ # type in the store.
4141
+ # Corresponds to the JSON property `structuredStorageSizeBytes`
4142
+ # @return [Fixnum]
4143
+ attr_accessor :structured_storage_size_bytes
4144
+
4145
+ def initialize(**args)
4146
+ update!(**args)
4147
+ end
4148
+
4149
+ # Update properties of this object
4150
+ def update!(**args)
4151
+ @count = args[:count] if args.key?(:count)
4152
+ @message_type = args[:message_type] if args.key?(:message_type)
4153
+ @structured_storage_size_bytes = args[:structured_storage_size_bytes] if args.key?(:structured_storage_size_bytes)
4154
+ end
4155
+ end
4156
+
4157
+ # List of metrics for a given HL7v2 store.
4158
+ class Hl7V2StoreMetrics
4159
+ include Google::Apis::Core::Hashable
4160
+
4161
+ # List of HL7v2 store metrics by message type.
4162
+ # Corresponds to the JSON property `metrics`
4163
+ # @return [Array<Google::Apis::HealthcareV1beta1::Hl7V2StoreMetric>]
4164
+ attr_accessor :metrics
4165
+
4166
+ # The resource name of the HL7v2 store to get metrics for, in the format `
4167
+ # projects/`project_id`/datasets/`dataset_id`/hl7V2Stores/`hl7v2_store_id``.
4168
+ # Corresponds to the JSON property `name`
4169
+ # @return [String]
4170
+ attr_accessor :name
4171
+
4172
+ def initialize(**args)
4173
+ update!(**args)
4174
+ end
4175
+
4176
+ # Update properties of this object
4177
+ def update!(**args)
4178
+ @metrics = args[:metrics] if args.key?(:metrics)
4179
+ @name = args[:name] if args.key?(:name)
4180
+ end
4181
+ end
4182
+
4076
4183
  # Message that represents an arbitrary HTTP body. It should only be used for
4077
4184
  # payload formats that can't be represented as JSON, such as raw binary or an
4078
4185
  # HTML page. This message can be used both in streaming and non-streaming API
@@ -5872,6 +5979,121 @@ module Google
5872
5979
  end
5873
5980
  end
5874
5981
 
5982
+ # Filters to select resources that need to be rolled back.
5983
+ class RollbackFhirResourceFilteringFields
5984
+ include Google::Apis::Core::Hashable
5985
+
5986
+ # Optional. A string to use for filtering resource metadata. Complies with AIP-
5987
+ # 160 except without the has operator. Additionally, supports 2 functions:
5988
+ # hastag("system") = "code" for tag filtering and extension_ts_value("uri") =
5989
+ # timestamp for filtering extensions with timestamp, which is given as a unix
5990
+ # timestamp. extension_ts_url can be used with >, <, <=, >=, != comparisons as
5991
+ # well.
5992
+ # Corresponds to the JSON property `metadataFilter`
5993
+ # @return [String]
5994
+ attr_accessor :metadata_filter
5995
+
5996
+ # Optional. A list of operation IDs to roll back. Only changes made by these
5997
+ # operations will be rolled back.
5998
+ # Corresponds to the JSON property `operationIds`
5999
+ # @return [Array<Fixnum>]
6000
+ attr_accessor :operation_ids
6001
+
6002
+ def initialize(**args)
6003
+ update!(**args)
6004
+ end
6005
+
6006
+ # Update properties of this object
6007
+ def update!(**args)
6008
+ @metadata_filter = args[:metadata_filter] if args.key?(:metadata_filter)
6009
+ @operation_ids = args[:operation_ids] if args.key?(:operation_ids)
6010
+ end
6011
+ end
6012
+
6013
+ # Request to roll back resources.
6014
+ class RollbackFhirResourcesRequest
6015
+ include Google::Apis::Core::Hashable
6016
+
6017
+ # Optional. CREATE/UPDATE/DELETE/ALL for reverting all txns of a certain type.
6018
+ # Corresponds to the JSON property `changeType`
6019
+ # @return [String]
6020
+ attr_accessor :change_type
6021
+
6022
+ # Optional. Specifies whether to exclude earlier rollbacks.
6023
+ # Corresponds to the JSON property `excludeRollbacks`
6024
+ # @return [Boolean]
6025
+ attr_accessor :exclude_rollbacks
6026
+ alias_method :exclude_rollbacks?, :exclude_rollbacks
6027
+
6028
+ # Filters to select resources that need to be rolled back.
6029
+ # Corresponds to the JSON property `filteringFields`
6030
+ # @return [Google::Apis::HealthcareV1beta1::RollbackFhirResourceFilteringFields]
6031
+ attr_accessor :filtering_fields
6032
+
6033
+ # Optional. When enabled, changes will be reverted without explicit confirmation
6034
+ # Corresponds to the JSON property `force`
6035
+ # @return [Boolean]
6036
+ attr_accessor :force
6037
+ alias_method :force?, :force
6038
+
6039
+ # Optional. Cloud Storage object containing list of `resourceType`/`resourceId`
6040
+ # lines, identifying resources to be reverted
6041
+ # Corresponds to the JSON property `inputGcsObject`
6042
+ # @return [String]
6043
+ attr_accessor :input_gcs_object
6044
+
6045
+ # Required. Bucket to deposit result
6046
+ # Corresponds to the JSON property `resultGcsBucket`
6047
+ # @return [String]
6048
+ attr_accessor :result_gcs_bucket
6049
+
6050
+ # Required. Time point to rollback to.
6051
+ # Corresponds to the JSON property `rollbackTime`
6052
+ # @return [String]
6053
+ attr_accessor :rollback_time
6054
+
6055
+ # Optional. If specified, revert only resources of these types
6056
+ # Corresponds to the JSON property `type`
6057
+ # @return [Array<String>]
6058
+ attr_accessor :type
6059
+
6060
+ def initialize(**args)
6061
+ update!(**args)
6062
+ end
6063
+
6064
+ # Update properties of this object
6065
+ def update!(**args)
6066
+ @change_type = args[:change_type] if args.key?(:change_type)
6067
+ @exclude_rollbacks = args[:exclude_rollbacks] if args.key?(:exclude_rollbacks)
6068
+ @filtering_fields = args[:filtering_fields] if args.key?(:filtering_fields)
6069
+ @force = args[:force] if args.key?(:force)
6070
+ @input_gcs_object = args[:input_gcs_object] if args.key?(:input_gcs_object)
6071
+ @result_gcs_bucket = args[:result_gcs_bucket] if args.key?(:result_gcs_bucket)
6072
+ @rollback_time = args[:rollback_time] if args.key?(:rollback_time)
6073
+ @type = args[:type] if args.key?(:type)
6074
+ end
6075
+ end
6076
+
6077
+ # Final response of rollback FIHR resources request.
6078
+ class RollbackFhirResourcesResponse
6079
+ include Google::Apis::Core::Hashable
6080
+
6081
+ # The name of the FHIR store to rollback, in the format of "projects/`project_id`
6082
+ # /locations/`location_id`/datasets/`dataset_id` /fhirStores/`fhir_store_id`".
6083
+ # Corresponds to the JSON property `fhirStore`
6084
+ # @return [String]
6085
+ attr_accessor :fhir_store
6086
+
6087
+ def initialize(**args)
6088
+ update!(**args)
6089
+ end
6090
+
6091
+ # Update properties of this object
6092
+ def update!(**args)
6093
+ @fhir_store = args[:fhir_store] if args.key?(:fhir_store)
6094
+ end
6095
+ end
6096
+
5875
6097
  # Configuration for the FHIR BigQuery schema. Determines how the server
5876
6098
  # generates the schema.
5877
6099
  class SchemaConfig
@@ -6199,6 +6421,45 @@ module Google
6199
6421
  end
6200
6422
  end
6201
6423
 
6424
+ # SeriesMetrics contains metrics describing a DICOM series.
6425
+ class SeriesMetrics
6426
+ include Google::Apis::Core::Hashable
6427
+
6428
+ # Total blob storage bytes for all instances in the series.
6429
+ # Corresponds to the JSON property `blobStorageSizeBytes`
6430
+ # @return [Fixnum]
6431
+ attr_accessor :blob_storage_size_bytes
6432
+
6433
+ # Number of instances in the series.
6434
+ # Corresponds to the JSON property `instanceCount`
6435
+ # @return [Fixnum]
6436
+ attr_accessor :instance_count
6437
+
6438
+ # The series resource path. For example, `projects/`project_id`/locations/`
6439
+ # location_id`/datasets/`dataset_id`/dicomStores/`dicom_store_id`/dicomWeb/
6440
+ # studies/`study_uid`/series/`series_uid``.
6441
+ # Corresponds to the JSON property `series`
6442
+ # @return [String]
6443
+ attr_accessor :series
6444
+
6445
+ # Total structured storage bytes for all instances in the series.
6446
+ # Corresponds to the JSON property `structuredStorageSizeBytes`
6447
+ # @return [Fixnum]
6448
+ attr_accessor :structured_storage_size_bytes
6449
+
6450
+ def initialize(**args)
6451
+ update!(**args)
6452
+ end
6453
+
6454
+ # Update properties of this object
6455
+ def update!(**args)
6456
+ @blob_storage_size_bytes = args[:blob_storage_size_bytes] if args.key?(:blob_storage_size_bytes)
6457
+ @instance_count = args[:instance_count] if args.key?(:instance_count)
6458
+ @series = args[:series] if args.key?(:series)
6459
+ @structured_storage_size_bytes = args[:structured_storage_size_bytes] if args.key?(:structured_storage_size_bytes)
6460
+ end
6461
+ end
6462
+
6202
6463
  # Request message for `SetIamPolicy` method.
6203
6464
  class SetIamPolicyRequest
6204
6465
  include Google::Apis::Core::Hashable
@@ -6363,6 +6624,51 @@ module Google
6363
6624
  end
6364
6625
  end
6365
6626
 
6627
+ # StudyMetrics contains metrics describing a DICOM study.
6628
+ class StudyMetrics
6629
+ include Google::Apis::Core::Hashable
6630
+
6631
+ # Total blob storage bytes for all instances in the study.
6632
+ # Corresponds to the JSON property `blobStorageSizeBytes`
6633
+ # @return [Fixnum]
6634
+ attr_accessor :blob_storage_size_bytes
6635
+
6636
+ # Number of instances in the study.
6637
+ # Corresponds to the JSON property `instanceCount`
6638
+ # @return [Fixnum]
6639
+ attr_accessor :instance_count
6640
+
6641
+ # Number of series in the study.
6642
+ # Corresponds to the JSON property `seriesCount`
6643
+ # @return [Fixnum]
6644
+ attr_accessor :series_count
6645
+
6646
+ # Total structured storage bytes for all instances in the study.
6647
+ # Corresponds to the JSON property `structuredStorageSizeBytes`
6648
+ # @return [Fixnum]
6649
+ attr_accessor :structured_storage_size_bytes
6650
+
6651
+ # The study resource path. For example, `projects/`project_id`/locations/`
6652
+ # location_id`/datasets/`dataset_id`/dicomStores/`dicom_store_id`/dicomWeb/
6653
+ # studies/`study_uid``.
6654
+ # Corresponds to the JSON property `study`
6655
+ # @return [String]
6656
+ attr_accessor :study
6657
+
6658
+ def initialize(**args)
6659
+ update!(**args)
6660
+ end
6661
+
6662
+ # Update properties of this object
6663
+ def update!(**args)
6664
+ @blob_storage_size_bytes = args[:blob_storage_size_bytes] if args.key?(:blob_storage_size_bytes)
6665
+ @instance_count = args[:instance_count] if args.key?(:instance_count)
6666
+ @series_count = args[:series_count] if args.key?(:series_count)
6667
+ @structured_storage_size_bytes = args[:structured_storage_size_bytes] if args.key?(:structured_storage_size_bytes)
6668
+ @study = args[:study] if args.key?(:study)
6669
+ end
6670
+ end
6671
+
6366
6672
  # List of tags to be filtered.
6367
6673
  class TagFilterList
6368
6674
  include Google::Apis::Core::Hashable
@@ -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.56.0"
19
+ GEM_VERSION = "0.58.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 = "20230921"
25
+ REVISION = "20231017"
26
26
  end
27
27
  end
28
28
  end
@@ -376,6 +376,12 @@ module Google
376
376
  include Google::Apis::Core::JsonObjectSupport
377
377
  end
378
378
 
379
+ class DicomStoreMetrics
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
379
385
  class DicomTagConfig
380
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
381
387
 
@@ -706,6 +712,18 @@ module Google
706
712
  include Google::Apis::Core::JsonObjectSupport
707
713
  end
708
714
 
715
+ class Hl7V2StoreMetric
716
+ class Representation < Google::Apis::Core::JsonRepresentation; end
717
+
718
+ include Google::Apis::Core::JsonObjectSupport
719
+ end
720
+
721
+ class Hl7V2StoreMetrics
722
+ class Representation < Google::Apis::Core::JsonRepresentation; end
723
+
724
+ include Google::Apis::Core::JsonObjectSupport
725
+ end
726
+
709
727
  class HttpBody
710
728
  class Representation < Google::Apis::Core::JsonRepresentation; end
711
729
 
@@ -1078,6 +1096,24 @@ module Google
1078
1096
  include Google::Apis::Core::JsonObjectSupport
1079
1097
  end
1080
1098
 
1099
+ class RollbackFhirResourceFilteringFields
1100
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1101
+
1102
+ include Google::Apis::Core::JsonObjectSupport
1103
+ end
1104
+
1105
+ class RollbackFhirResourcesRequest
1106
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1107
+
1108
+ include Google::Apis::Core::JsonObjectSupport
1109
+ end
1110
+
1111
+ class RollbackFhirResourcesResponse
1112
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1113
+
1114
+ include Google::Apis::Core::JsonObjectSupport
1115
+ end
1116
+
1081
1117
  class SchemaConfig
1082
1118
  class Representation < Google::Apis::Core::JsonRepresentation; end
1083
1119
 
@@ -1138,6 +1174,12 @@ module Google
1138
1174
  include Google::Apis::Core::JsonObjectSupport
1139
1175
  end
1140
1176
 
1177
+ class SeriesMetrics
1178
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1179
+
1180
+ include Google::Apis::Core::JsonObjectSupport
1181
+ end
1182
+
1141
1183
  class SetIamPolicyRequest
1142
1184
  class Representation < Google::Apis::Core::JsonRepresentation; end
1143
1185
 
@@ -1162,6 +1204,12 @@ module Google
1162
1204
  include Google::Apis::Core::JsonObjectSupport
1163
1205
  end
1164
1206
 
1207
+ class StudyMetrics
1208
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1209
+
1210
+ include Google::Apis::Core::JsonObjectSupport
1211
+ end
1212
+
1165
1213
  class TagFilterList
1166
1214
  class Representation < Google::Apis::Core::JsonRepresentation; end
1167
1215
 
@@ -1786,6 +1834,18 @@ module Google
1786
1834
  end
1787
1835
  end
1788
1836
 
1837
+ class DicomStoreMetrics
1838
+ # @private
1839
+ class Representation < Google::Apis::Core::JsonRepresentation
1840
+ property :blob_storage_size_bytes, :numeric_string => true, as: 'blobStorageSizeBytes'
1841
+ property :instance_count, :numeric_string => true, as: 'instanceCount'
1842
+ property :name, as: 'name'
1843
+ property :series_count, :numeric_string => true, as: 'seriesCount'
1844
+ property :structured_storage_size_bytes, :numeric_string => true, as: 'structuredStorageSizeBytes'
1845
+ property :study_count, :numeric_string => true, as: 'studyCount'
1846
+ end
1847
+ end
1848
+
1789
1849
  class DicomTagConfig
1790
1850
  # @private
1791
1851
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2317,6 +2377,24 @@ module Google
2317
2377
  end
2318
2378
  end
2319
2379
 
2380
+ class Hl7V2StoreMetric
2381
+ # @private
2382
+ class Representation < Google::Apis::Core::JsonRepresentation
2383
+ property :count, :numeric_string => true, as: 'count'
2384
+ property :message_type, as: 'messageType'
2385
+ property :structured_storage_size_bytes, :numeric_string => true, as: 'structuredStorageSizeBytes'
2386
+ end
2387
+ end
2388
+
2389
+ class Hl7V2StoreMetrics
2390
+ # @private
2391
+ class Representation < Google::Apis::Core::JsonRepresentation
2392
+ collection :metrics, as: 'metrics', class: Google::Apis::HealthcareV1beta1::Hl7V2StoreMetric, decorator: Google::Apis::HealthcareV1beta1::Hl7V2StoreMetric::Representation
2393
+
2394
+ property :name, as: 'name'
2395
+ end
2396
+ end
2397
+
2320
2398
  class HttpBody
2321
2399
  # @private
2322
2400
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2851,6 +2929,36 @@ module Google
2851
2929
  end
2852
2930
  end
2853
2931
 
2932
+ class RollbackFhirResourceFilteringFields
2933
+ # @private
2934
+ class Representation < Google::Apis::Core::JsonRepresentation
2935
+ property :metadata_filter, as: 'metadataFilter'
2936
+ collection :operation_ids, as: 'operationIds'
2937
+ end
2938
+ end
2939
+
2940
+ class RollbackFhirResourcesRequest
2941
+ # @private
2942
+ class Representation < Google::Apis::Core::JsonRepresentation
2943
+ property :change_type, as: 'changeType'
2944
+ property :exclude_rollbacks, as: 'excludeRollbacks'
2945
+ property :filtering_fields, as: 'filteringFields', class: Google::Apis::HealthcareV1beta1::RollbackFhirResourceFilteringFields, decorator: Google::Apis::HealthcareV1beta1::RollbackFhirResourceFilteringFields::Representation
2946
+
2947
+ property :force, as: 'force'
2948
+ property :input_gcs_object, as: 'inputGcsObject'
2949
+ property :result_gcs_bucket, as: 'resultGcsBucket'
2950
+ property :rollback_time, as: 'rollbackTime'
2951
+ collection :type, as: 'type'
2952
+ end
2953
+ end
2954
+
2955
+ class RollbackFhirResourcesResponse
2956
+ # @private
2957
+ class Representation < Google::Apis::Core::JsonRepresentation
2958
+ property :fhir_store, as: 'fhirStore'
2959
+ end
2960
+ end
2961
+
2854
2962
  class SchemaConfig
2855
2963
  # @private
2856
2964
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2943,6 +3051,16 @@ module Google
2943
3051
  end
2944
3052
  end
2945
3053
 
3054
+ class SeriesMetrics
3055
+ # @private
3056
+ class Representation < Google::Apis::Core::JsonRepresentation
3057
+ property :blob_storage_size_bytes, :numeric_string => true, as: 'blobStorageSizeBytes'
3058
+ property :instance_count, :numeric_string => true, as: 'instanceCount'
3059
+ property :series, as: 'series'
3060
+ property :structured_storage_size_bytes, :numeric_string => true, as: 'structuredStorageSizeBytes'
3061
+ end
3062
+ end
3063
+
2946
3064
  class SetIamPolicyRequest
2947
3065
  # @private
2948
3066
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2983,6 +3101,17 @@ module Google
2983
3101
  end
2984
3102
  end
2985
3103
 
3104
+ class StudyMetrics
3105
+ # @private
3106
+ class Representation < Google::Apis::Core::JsonRepresentation
3107
+ property :blob_storage_size_bytes, :numeric_string => true, as: 'blobStorageSizeBytes'
3108
+ property :instance_count, :numeric_string => true, as: 'instanceCount'
3109
+ property :series_count, :numeric_string => true, as: 'seriesCount'
3110
+ property :structured_storage_size_bytes, :numeric_string => true, as: 'structuredStorageSizeBytes'
3111
+ property :study, as: 'study'
3112
+ end
3113
+ end
3114
+
2986
3115
  class TagFilterList
2987
3116
  # @private
2988
3117
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2747,6 +2747,36 @@ module Google
2747
2747
  execute_or_queue_command(command, &block)
2748
2748
  end
2749
2749
 
2750
+ # Gets metrics associated with the DICOM store.
2751
+ # @param [String] name
2752
+ # The resource name of the DICOM store to get metrics for.
2753
+ # @param [String] fields
2754
+ # Selector specifying which fields to include in a partial response.
2755
+ # @param [String] quota_user
2756
+ # Available to use for quota purposes for server-side applications. Can be any
2757
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2758
+ # @param [Google::Apis::RequestOptions] options
2759
+ # Request-specific options
2760
+ #
2761
+ # @yield [result, err] Result & error if block supplied
2762
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::DicomStoreMetrics] parsed result object
2763
+ # @yieldparam err [StandardError] error object if request failed
2764
+ #
2765
+ # @return [Google::Apis::HealthcareV1beta1::DicomStoreMetrics]
2766
+ #
2767
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2768
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2769
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2770
+ def get_project_location_dataset_dicom_store_dicom_store_metrics(name, fields: nil, quota_user: nil, options: nil, &block)
2771
+ command = make_simple_command(:get, 'v1beta1/{+name}:getDICOMStoreMetrics', options)
2772
+ command.response_representation = Google::Apis::HealthcareV1beta1::DicomStoreMetrics::Representation
2773
+ command.response_class = Google::Apis::HealthcareV1beta1::DicomStoreMetrics
2774
+ command.params['name'] = name unless name.nil?
2775
+ command.query['fields'] = fields unless fields.nil?
2776
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2777
+ execute_or_queue_command(command, &block)
2778
+ end
2779
+
2750
2780
  # Gets the access control policy for a resource. Returns an empty policy if the
2751
2781
  # resource exists and does not have a policy set.
2752
2782
  # @param [String] resource
@@ -3182,6 +3212,70 @@ module Google
3182
3212
  execute_or_queue_command(command, &block)
3183
3213
  end
3184
3214
 
3215
+ # GetStudyMetrics returns metrics for a study.
3216
+ # @param [String] study
3217
+ # The study resource path. For example, `projects/`project_id`/locations/`
3218
+ # location_id`/datasets/`dataset_id`/dicomStores/`dicom_store_id`/dicomWeb/
3219
+ # studies/`study_uid``.
3220
+ # @param [String] fields
3221
+ # Selector specifying which fields to include in a partial response.
3222
+ # @param [String] quota_user
3223
+ # Available to use for quota purposes for server-side applications. Can be any
3224
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3225
+ # @param [Google::Apis::RequestOptions] options
3226
+ # Request-specific options
3227
+ #
3228
+ # @yield [result, err] Result & error if block supplied
3229
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::StudyMetrics] parsed result object
3230
+ # @yieldparam err [StandardError] error object if request failed
3231
+ #
3232
+ # @return [Google::Apis::HealthcareV1beta1::StudyMetrics]
3233
+ #
3234
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3235
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3236
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3237
+ def get_project_location_dataset_dicom_store_dicom_web_study_study_metrics(study, fields: nil, quota_user: nil, options: nil, &block)
3238
+ command = make_simple_command(:get, 'v1beta1/{+study}:getStudyMetrics', options)
3239
+ command.response_representation = Google::Apis::HealthcareV1beta1::StudyMetrics::Representation
3240
+ command.response_class = Google::Apis::HealthcareV1beta1::StudyMetrics
3241
+ command.params['study'] = study unless study.nil?
3242
+ command.query['fields'] = fields unless fields.nil?
3243
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3244
+ execute_or_queue_command(command, &block)
3245
+ end
3246
+
3247
+ # GetSeriesMetrics returns metrics for a series.
3248
+ # @param [String] series
3249
+ # The series resource path. For example, `projects/`project_id`/locations/`
3250
+ # location_id`/datasets/`dataset_id`/dicomStores/`dicom_store_id`/dicomWeb/
3251
+ # studies/`study_uid`/series/`series_uid``.
3252
+ # @param [String] fields
3253
+ # Selector specifying which fields to include in a partial response.
3254
+ # @param [String] quota_user
3255
+ # Available to use for quota purposes for server-side applications. Can be any
3256
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3257
+ # @param [Google::Apis::RequestOptions] options
3258
+ # Request-specific options
3259
+ #
3260
+ # @yield [result, err] Result & error if block supplied
3261
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::SeriesMetrics] parsed result object
3262
+ # @yieldparam err [StandardError] error object if request failed
3263
+ #
3264
+ # @return [Google::Apis::HealthcareV1beta1::SeriesMetrics]
3265
+ #
3266
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3267
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3268
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3269
+ def get_project_location_dataset_dicom_store_dicom_web_study_series_series_metrics(series, fields: nil, quota_user: nil, options: nil, &block)
3270
+ command = make_simple_command(:get, 'v1beta1/{+series}:getSeriesMetrics', options)
3271
+ command.response_representation = Google::Apis::HealthcareV1beta1::SeriesMetrics::Representation
3272
+ command.response_class = Google::Apis::HealthcareV1beta1::SeriesMetrics
3273
+ command.params['series'] = series unless series.nil?
3274
+ command.query['fields'] = fields unless fields.nil?
3275
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3276
+ execute_or_queue_command(command, &block)
3277
+ end
3278
+
3185
3279
  # DeleteStudy deletes all instances within the given study using a long running
3186
3280
  # operation. The method returns an Operation which will be marked successful
3187
3281
  # when the deletion is complete. Warning: Instances cannot be inserted into a
@@ -4451,6 +4545,48 @@ module Google
4451
4545
  execute_or_queue_command(command, &block)
4452
4546
  end
4453
4547
 
4548
+ # Rolls back resources from the FHIR store to the specified time. This method
4549
+ # returns an Operation that can be used to track the status of the rollback by
4550
+ # calling GetOperation. Immediate fatal errors appear in the error field, errors
4551
+ # are also logged to Cloud Logging (see [Viewing error logs in Cloud Logging](
4552
+ # https://cloud.google.com/healthcare/docs/how-tos/logging)). Otherwise, when
4553
+ # the operation finishes, a detailed response of type
4554
+ # RollbackFhirResourcesResponse is returned in the response field. The metadata
4555
+ # field type for this operation is OperationMetadata.
4556
+ # @param [String] name
4557
+ # Required. The name of the FHIR store to rollback, in the format of "projects/`
4558
+ # project_id`/locations/`location_id`/datasets/`dataset_id` /fhirStores/`
4559
+ # fhir_store_id`".
4560
+ # @param [Google::Apis::HealthcareV1beta1::RollbackFhirResourcesRequest] rollback_fhir_resources_request_object
4561
+ # @param [String] fields
4562
+ # Selector specifying which fields to include in a partial response.
4563
+ # @param [String] quota_user
4564
+ # Available to use for quota purposes for server-side applications. Can be any
4565
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4566
+ # @param [Google::Apis::RequestOptions] options
4567
+ # Request-specific options
4568
+ #
4569
+ # @yield [result, err] Result & error if block supplied
4570
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::Operation] parsed result object
4571
+ # @yieldparam err [StandardError] error object if request failed
4572
+ #
4573
+ # @return [Google::Apis::HealthcareV1beta1::Operation]
4574
+ #
4575
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4576
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4577
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4578
+ def rollback_fhir_store_fhir_resources(name, rollback_fhir_resources_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
4579
+ command = make_simple_command(:post, 'v1beta1/{+name}:rollback', options)
4580
+ command.request_representation = Google::Apis::HealthcareV1beta1::RollbackFhirResourcesRequest::Representation
4581
+ command.request_object = rollback_fhir_resources_request_object
4582
+ command.response_representation = Google::Apis::HealthcareV1beta1::Operation::Representation
4583
+ command.response_class = Google::Apis::HealthcareV1beta1::Operation
4584
+ command.params['name'] = name unless name.nil?
4585
+ command.query['fields'] = fields unless fields.nil?
4586
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4587
+ execute_or_queue_command(command, &block)
4588
+ end
4589
+
4454
4590
  # Sets the access control policy on the specified resource. Replaces any
4455
4591
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
4456
4592
  # PERMISSION_DENIED` errors.
@@ -5611,10 +5747,26 @@ module Google
5611
5747
  # 50,000 might not be fully searchable as the server might trim its generated
5612
5748
  # search index in those cases. Note: FHIR resources are indexed asynchronously,
5613
5749
  # so there might be a slight delay between the time a resource is created or
5614
- # changes and when the change is reflected in search results. For samples and
5615
- # detailed information, see [Searching for FHIR resources](https://cloud.google.
5616
- # com/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](
5617
- # https://cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
5750
+ # changed, and the time when the change reflects in search results. The only
5751
+ # exception is resource identifier data, which is indexed synchronously as a
5752
+ # special index. As a result, searching using resource identifier is not subject
5753
+ # to indexing delay. To use the special synchronous index, the search term for
5754
+ # identifier should be in the pattern `identifier=[system]|[value]` or `
5755
+ # identifier=[value]`, and any of the following search result parameters can be
5756
+ # used: * `_count` * `_include` * `_revinclude` * `_summary` * `_elements` If
5757
+ # your query contains any other search parameters, the standard asynchronous
5758
+ # index will be used instead. Note that searching against the special index is
5759
+ # optimized for resolving a small number of matches. The search isn't optimized
5760
+ # if your identifier search criteria matches a large number (i.e. more than 2,
5761
+ # 000) of resources. For a search query that will match a large number of
5762
+ # resources, you can avoiding using the special synchronous index by including
5763
+ # an additional `_sort` parameter in your query. Use `_sort=-_lastUpdated` if
5764
+ # you want to keep the default sorting order. Note: The special synchronous
5765
+ # identifier index are currently disabled for DocumentReference and
5766
+ # DocumentManifest searches. For samples and detailed information, see [
5767
+ # Searching for FHIR resources](https://cloud.google.com/healthcare/docs/how-tos/
5768
+ # fhir-search) and [Advanced FHIR search features](https://cloud.google.com/
5769
+ # healthcare/docs/how-tos/fhir-advanced-search).
5618
5770
  # @param [String] parent
5619
5771
  # Name of the FHIR store to retrieve resources from.
5620
5772
  # @param [Google::Apis::HealthcareV1beta1::SearchResourcesRequest] search_resources_request_object
@@ -5689,10 +5841,26 @@ module Google
5689
5841
  # 50,000 might not be fully searchable as the server might trim its generated
5690
5842
  # search index in those cases. Note: FHIR resources are indexed asynchronously,
5691
5843
  # so there might be a slight delay between the time a resource is created or
5692
- # changes and when the change is reflected in search results. For samples and
5693
- # detailed information, see [Searching for FHIR resources](https://cloud.google.
5694
- # com/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](
5695
- # https://cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
5844
+ # changed, and the time when the change reflects in search results. The only
5845
+ # exception is resource identifier data, which is indexed synchronously as a
5846
+ # special index. As a result, searching using resource identifier is not subject
5847
+ # to indexing delay. To use the special synchronous index, the search term for
5848
+ # identifier should be in the pattern `identifier=[system]|[value]` or `
5849
+ # identifier=[value]`, and any of the following search result parameters can be
5850
+ # used: * `_count` * `_include` * `_revinclude` * `_summary` * `_elements` If
5851
+ # your query contains any other search parameters, the standard asynchronous
5852
+ # index will be used instead. Note that searching against the special index is
5853
+ # optimized for resolving a small number of matches. The search isn't optimized
5854
+ # if your identifier search criteria matches a large number (i.e. more than 2,
5855
+ # 000) of resources. For a search query that will match a large number of
5856
+ # resources, you can avoiding using the special synchronous index by including
5857
+ # an additional `_sort` parameter in your query. Use `_sort=-_lastUpdated` if
5858
+ # you want to keep the default sorting order. Note: The special synchronous
5859
+ # identifier index are currently disabled for DocumentReference and
5860
+ # DocumentManifest searches. For samples and detailed information, see [
5861
+ # Searching for FHIR resources](https://cloud.google.com/healthcare/docs/how-tos/
5862
+ # fhir-search) and [Advanced FHIR search features](https://cloud.google.com/
5863
+ # healthcare/docs/how-tos/fhir-advanced-search).
5696
5864
  # @param [String] parent
5697
5865
  # Name of the FHIR store to retrieve resources from.
5698
5866
  # @param [String] resource_type
@@ -5963,6 +6131,38 @@ module Google
5963
6131
  execute_or_queue_command(command, &block)
5964
6132
  end
5965
6133
 
6134
+ # Gets metrics asssociated with the HL7v2 store.
6135
+ # @param [String] name
6136
+ # The resource name of the HL7v2 store to get metrics for, in the format `
6137
+ # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
6138
+ # hl7V2Stores/`hl7v2_store_id``.
6139
+ # @param [String] fields
6140
+ # Selector specifying which fields to include in a partial response.
6141
+ # @param [String] quota_user
6142
+ # Available to use for quota purposes for server-side applications. Can be any
6143
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
6144
+ # @param [Google::Apis::RequestOptions] options
6145
+ # Request-specific options
6146
+ #
6147
+ # @yield [result, err] Result & error if block supplied
6148
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::Hl7V2StoreMetrics] parsed result object
6149
+ # @yieldparam err [StandardError] error object if request failed
6150
+ #
6151
+ # @return [Google::Apis::HealthcareV1beta1::Hl7V2StoreMetrics]
6152
+ #
6153
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6154
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6155
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
6156
+ def get_project_location_dataset_hl7_v2_store_hl7v2_store_metrics(name, fields: nil, quota_user: nil, options: nil, &block)
6157
+ command = make_simple_command(:get, 'v1beta1/{+name}:getHL7v2StoreMetrics', options)
6158
+ command.response_representation = Google::Apis::HealthcareV1beta1::Hl7V2StoreMetrics::Representation
6159
+ command.response_class = Google::Apis::HealthcareV1beta1::Hl7V2StoreMetrics
6160
+ command.params['name'] = name unless name.nil?
6161
+ command.query['fields'] = fields unless fields.nil?
6162
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
6163
+ execute_or_queue_command(command, &block)
6164
+ end
6165
+
5966
6166
  # Gets the access control policy for a resource. Returns an empty policy if the
5967
6167
  # resource exists and does not have a policy set.
5968
6168
  # @param [String] resource
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.56.0
4
+ version: 0.58.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-10-01 00:00:00.000000000 Z
11
+ date: 2023-10-22 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.56.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.58.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: []