google-apis-healthcare_v1beta1 0.57.0 → 0.59.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: ba7d681f27fa13025b4730435a6a5db3d6aff6b1687d4a116524200caa97a2bd
4
- data.tar.gz: 5d241a85f6c800c62a5baa3b9ab24ea3c3e1121404fdc247e3622a23df5eb8d0
3
+ metadata.gz: 19bb43b3698ba61ebc864b9eecc5ed17b461eb39392928f8d1f0c6f11b4f6b86
4
+ data.tar.gz: 7d0d8d3d60a4382c18ed009a0e4d8bd14a4d03035770a810679f55f68c717be3
5
5
  SHA512:
6
- metadata.gz: 633734b41a30b249be124043d0fc3a9e6760fb41a5b221e2d0d0d93d66a93b0ab785f879c8c3eeead6337ab7ccb0006d5ebcc10d2abdeed9dc1a8249ee6d3ad6
7
- data.tar.gz: 471eb764efe42a279bb297402e60979d15c4004873f69ee6bcf492a9b9c70dad2409d142d3be96559697875b2ae765cf34869cc53ec7774997e0c2531503e380
6
+ metadata.gz: d72efbb91483f47ec78591af123b4ae40afd5d1e90d46012e78879e85edd10dda46ab9aa4eb35f21fae2bb465ee6fccf233f0a0679f0be21f883ee4f70bead92
7
+ data.tar.gz: ff825c98f6d752c251f83ecbcdd7c97f3d3c24d84b12d4c73b991f56cd0e77d16c77387c3ad94b1358c9b54c01be44f73961f2b0d381531cb41902074cba2517
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.59.0 (2023-11-05)
4
+
5
+ * Regenerated from discovery document revision 20231101
6
+
7
+ ### v0.58.0 (2023-10-22)
8
+
9
+ * Regenerated from discovery document revision 20231017
10
+
3
11
  ### v0.57.0 (2023-10-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20231003
@@ -834,6 +834,59 @@ module Google
834
834
  end
835
835
  end
836
836
 
837
+ # BlobStorageInfo contains details about the data stored in Blob Storage for the
838
+ # referenced resource. Note: Storage class is only valid for DICOM and hence
839
+ # will only be populated for DICOM resources.
840
+ class BlobStorageInfo
841
+ include Google::Apis::Core::Hashable
842
+
843
+ # Size in bytes of data stored in Blob Storage.
844
+ # Corresponds to the JSON property `sizeBytes`
845
+ # @return [Fixnum]
846
+ attr_accessor :size_bytes
847
+
848
+ # The storage class in which the Blob data is stored.
849
+ # Corresponds to the JSON property `storageClass`
850
+ # @return [String]
851
+ attr_accessor :storage_class
852
+
853
+ # The time at which the storage class was updated. This is used to compute early
854
+ # deletion fees of the resource.
855
+ # Corresponds to the JSON property `storageClassUpdateTime`
856
+ # @return [String]
857
+ attr_accessor :storage_class_update_time
858
+
859
+ def initialize(**args)
860
+ update!(**args)
861
+ end
862
+
863
+ # Update properties of this object
864
+ def update!(**args)
865
+ @size_bytes = args[:size_bytes] if args.key?(:size_bytes)
866
+ @storage_class = args[:storage_class] if args.key?(:storage_class)
867
+ @storage_class_update_time = args[:storage_class_update_time] if args.key?(:storage_class_update_time)
868
+ end
869
+ end
870
+
871
+ # Settings for data stored in Blob storage.
872
+ class BlobStorageSettings
873
+ include Google::Apis::Core::Hashable
874
+
875
+ # The Storage class in which the Blob data is stored.
876
+ # Corresponds to the JSON property `blobStorageClass`
877
+ # @return [String]
878
+ attr_accessor :blob_storage_class
879
+
880
+ def initialize(**args)
881
+ update!(**args)
882
+ end
883
+
884
+ # Update properties of this object
885
+ def update!(**args)
886
+ @blob_storage_class = args[:blob_storage_class] if args.key?(:blob_storage_class)
887
+ end
888
+ end
889
+
837
890
  # A bounding polygon for the detected image annotation.
838
891
  class BoundingPoly
839
892
  include Google::Apis::Core::Hashable
@@ -2513,42 +2566,41 @@ module Google
2513
2566
  attr_accessor :end_time
2514
2567
 
2515
2568
  # Restricts messages exported to those matching a filter, only applicable to
2516
- # PubsubDestination and GcsDestination. The following syntax is available: * A
2517
- # string field value can be written as text inside quotation marks, for example `
2518
- # "query text"`. The only valid relational operation for text fields is equality
2519
- # (`=`), where text is searched within the field, rather than having the field
2520
- # be equal to the text. For example, `"Comment = great"` returns messages with `
2521
- # great` in the comment field. * A number field value can be written as an
2522
- # integer, a decimal, or an exponential. The valid relational operators for
2523
- # number fields are the equality operator (`=`), along with the less than/
2524
- # greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
2525
- # inequality (`!=`) operator. You can prepend the `NOT` operator to an
2526
- # expression to negate it. * A date field value must be written in the `yyyy-mm-
2527
- # dd` format. Fields with date and time use the RFC3339 time format. Leading
2528
- # zeros are required for one-digit months and days. The valid relational
2529
- # operators for date fields are the equality operator (`=`) , along with the
2530
- # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
2531
- # inequality (`!=`) operator. You can prepend the `NOT` operator to an
2532
- # expression to negate it. * Multiple field query expressions can be combined in
2533
- # one query by adding `AND` or `OR` operators between the expressions. If a
2534
- # boolean operator appears within a quoted string, it is not treated as special,
2535
- # and is just another part of the character string to be matched. You can
2536
- # prepend the `NOT` operator to an expression to negate it. The following fields
2537
- # and functions are available for filtering: * `message_type`, from the MSH-9.1
2538
- # field. For example, `NOT message_type = "ADT"`. * `send_date` or `sendDate`,
2539
- # the YYYY-MM-DD date the message was sent in the dataset's time_zone, from the
2540
- # MSH-7 segment. For example, `send_date < "2017-01-02"`. * `send_time`, the
2541
- # timestamp when the message was sent, using the RFC3339 time format for
2542
- # comparisons, from the MSH-7 segment. For example, `send_time < "2017-01-02T00:
2543
- # 00:00-05:00"`. * `create_time`, the timestamp when the message was created in
2544
- # the HL7v2 store. Use the RFC3339 time format for comparisons. For example, `
2545
- # create_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`, the care center
2546
- # that the message came from, from the MSH-4 segment. For example, `
2547
- # send_facility = "ABC"`. Note: The filter will be applied to every message in
2548
- # the HL7v2 store whose `send_time` lies in the range defined by the `start_time`
2549
- # and the `end_time`. Even if the filter only matches a small set of messages,
2550
- # the export operation can still take a long time to finish when a lot of
2551
- # messages are between the specified `start_time` and `end_time` range.
2569
+ # PubsubDestination. The following syntax is available: * A string field value
2570
+ # can be written as text inside quotation marks, for example `"query text"`. The
2571
+ # only valid relational operation for text fields is equality (`=`), where text
2572
+ # is searched within the field, rather than having the field be equal to the
2573
+ # text. For example, `"Comment = great"` returns messages with `great` in the
2574
+ # comment field. * A number field value can be written as an integer, a decimal,
2575
+ # or an exponential. The valid relational operators for number fields are the
2576
+ # equality operator (`=`), along with the less than/greater than operators (`<`,
2577
+ # `<=`, `>`, `>=`). Note that there is no inequality (`!=`) operator. You can
2578
+ # prepend the `NOT` operator to an expression to negate it. * A date field value
2579
+ # must be written in the `yyyy-mm-dd` format. Fields with date and time use the
2580
+ # RFC3339 time format. Leading zeros are required for one-digit months and days.
2581
+ # The valid relational operators for date fields are the equality operator (`=`)
2582
+ # , along with the less than/greater than operators (`<`, `<=`, `>`, `>=`). Note
2583
+ # that there is no inequality (`!=`) operator. You can prepend the `NOT`
2584
+ # operator to an expression to negate it. * Multiple field query expressions can
2585
+ # be combined in one query by adding `AND` or `OR` operators between the
2586
+ # expressions. If a boolean operator appears within a quoted string, it is not
2587
+ # treated as special, and is just another part of the character string to be
2588
+ # matched. You can prepend the `NOT` operator to an expression to negate it. The
2589
+ # following fields and functions are available for filtering: * `message_type`,
2590
+ # from the MSH-9.1 field. For example, `NOT message_type = "ADT"`. * `send_date`
2591
+ # or `sendDate`, the YYYY-MM-DD date the message was sent in the dataset's
2592
+ # time_zone, from the MSH-7 segment. For example, `send_date < "2017-01-02"`. * `
2593
+ # send_time`, the timestamp when the message was sent, using the RFC3339 time
2594
+ # format for comparisons, from the MSH-7 segment. For example, `send_time < "
2595
+ # 2017-01-02T00:00:00-05:00"`. * `create_time`, the timestamp when the message
2596
+ # was created in the HL7v2 store. Use the RFC3339 time format for comparisons.
2597
+ # For example, `create_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`,
2598
+ # the care center that the message came from, from the MSH-4 segment. For
2599
+ # example, `send_facility = "ABC"`. Note: The filter will be applied to every
2600
+ # message in the HL7v2 store whose `send_time` lies in the range defined by the `
2601
+ # start_time` and the `end_time`. Even if the filter only matches a small set of
2602
+ # messages, the export operation can still take a long time to finish when a lot
2603
+ # of messages are between the specified `start_time` and `end_time` range.
2552
2604
  # Corresponds to the JSON property `filter`
2553
2605
  # @return [String]
2554
2606
  attr_accessor :filter
@@ -4367,6 +4419,11 @@ module Google
4367
4419
  class ImportDicomDataRequest
4368
4420
  include Google::Apis::Core::Hashable
4369
4421
 
4422
+ # Settings for data stored in Blob storage.
4423
+ # Corresponds to the JSON property `blobStorageSettings`
4424
+ # @return [Google::Apis::HealthcareV1beta1::BlobStorageSettings]
4425
+ attr_accessor :blob_storage_settings
4426
+
4370
4427
  # Specifies the configuration for importing data from Cloud Storage.
4371
4428
  # Corresponds to the JSON property `gcsSource`
4372
4429
  # @return [Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomGcsSource]
@@ -4378,6 +4435,7 @@ module Google
4378
4435
 
4379
4436
  # Update properties of this object
4380
4437
  def update!(**args)
4438
+ @blob_storage_settings = args[:blob_storage_settings] if args.key?(:blob_storage_settings)
4381
4439
  @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
4382
4440
  end
4383
4441
  end
@@ -5980,6 +6038,121 @@ module Google
5980
6038
  end
5981
6039
  end
5982
6040
 
6041
+ # Filters to select resources that need to be rolled back.
6042
+ class RollbackFhirResourceFilteringFields
6043
+ include Google::Apis::Core::Hashable
6044
+
6045
+ # Optional. A filter expression that matches data in the `Resource.meta` element.
6046
+ # Supports all filters in [AIP-160](https://google.aip.dev/160) except the "has"
6047
+ # (`:`) operator. Supports the following custom functions: * `tag("") = ""` for
6048
+ # tag filtering. * `extension_value_ts("") = ` for filtering extensions with a
6049
+ # timestamp, where `` is a Unix timestamp. Supports the `>`, `<`, `<=`, `>=`,
6050
+ # and `!=` comparison operators.
6051
+ # Corresponds to the JSON property `metadataFilter`
6052
+ # @return [String]
6053
+ attr_accessor :metadata_filter
6054
+
6055
+ # Optional. A list of operation IDs to roll back. Only changes made by these
6056
+ # operations will be rolled back.
6057
+ # Corresponds to the JSON property `operationIds`
6058
+ # @return [Array<Fixnum>]
6059
+ attr_accessor :operation_ids
6060
+
6061
+ def initialize(**args)
6062
+ update!(**args)
6063
+ end
6064
+
6065
+ # Update properties of this object
6066
+ def update!(**args)
6067
+ @metadata_filter = args[:metadata_filter] if args.key?(:metadata_filter)
6068
+ @operation_ids = args[:operation_ids] if args.key?(:operation_ids)
6069
+ end
6070
+ end
6071
+
6072
+ # Request to roll back resources.
6073
+ class RollbackFhirResourcesRequest
6074
+ include Google::Apis::Core::Hashable
6075
+
6076
+ # Optional. CREATE/UPDATE/DELETE/ALL for reverting all txns of a certain type.
6077
+ # Corresponds to the JSON property `changeType`
6078
+ # @return [String]
6079
+ attr_accessor :change_type
6080
+
6081
+ # Optional. Specifies whether to exclude earlier rollbacks.
6082
+ # Corresponds to the JSON property `excludeRollbacks`
6083
+ # @return [Boolean]
6084
+ attr_accessor :exclude_rollbacks
6085
+ alias_method :exclude_rollbacks?, :exclude_rollbacks
6086
+
6087
+ # Filters to select resources that need to be rolled back.
6088
+ # Corresponds to the JSON property `filteringFields`
6089
+ # @return [Google::Apis::HealthcareV1beta1::RollbackFhirResourceFilteringFields]
6090
+ attr_accessor :filtering_fields
6091
+
6092
+ # Optional. When enabled, changes will be reverted without explicit confirmation
6093
+ # Corresponds to the JSON property `force`
6094
+ # @return [Boolean]
6095
+ attr_accessor :force
6096
+ alias_method :force?, :force
6097
+
6098
+ # Optional. Cloud Storage object containing list of `resourceType`/`resourceId`
6099
+ # lines, identifying resources to be reverted
6100
+ # Corresponds to the JSON property `inputGcsObject`
6101
+ # @return [String]
6102
+ attr_accessor :input_gcs_object
6103
+
6104
+ # Required. Bucket to deposit result
6105
+ # Corresponds to the JSON property `resultGcsBucket`
6106
+ # @return [String]
6107
+ attr_accessor :result_gcs_bucket
6108
+
6109
+ # Required. Time point to rollback to.
6110
+ # Corresponds to the JSON property `rollbackTime`
6111
+ # @return [String]
6112
+ attr_accessor :rollback_time
6113
+
6114
+ # Optional. If specified, revert only resources of these types
6115
+ # Corresponds to the JSON property `type`
6116
+ # @return [Array<String>]
6117
+ attr_accessor :type
6118
+
6119
+ def initialize(**args)
6120
+ update!(**args)
6121
+ end
6122
+
6123
+ # Update properties of this object
6124
+ def update!(**args)
6125
+ @change_type = args[:change_type] if args.key?(:change_type)
6126
+ @exclude_rollbacks = args[:exclude_rollbacks] if args.key?(:exclude_rollbacks)
6127
+ @filtering_fields = args[:filtering_fields] if args.key?(:filtering_fields)
6128
+ @force = args[:force] if args.key?(:force)
6129
+ @input_gcs_object = args[:input_gcs_object] if args.key?(:input_gcs_object)
6130
+ @result_gcs_bucket = args[:result_gcs_bucket] if args.key?(:result_gcs_bucket)
6131
+ @rollback_time = args[:rollback_time] if args.key?(:rollback_time)
6132
+ @type = args[:type] if args.key?(:type)
6133
+ end
6134
+ end
6135
+
6136
+ # Final response of rollback FIHR resources request.
6137
+ class RollbackFhirResourcesResponse
6138
+ include Google::Apis::Core::Hashable
6139
+
6140
+ # The name of the FHIR store to rollback, in the format of "projects/`project_id`
6141
+ # /locations/`location_id`/datasets/`dataset_id` /fhirStores/`fhir_store_id`".
6142
+ # Corresponds to the JSON property `fhirStore`
6143
+ # @return [String]
6144
+ attr_accessor :fhir_store
6145
+
6146
+ def initialize(**args)
6147
+ update!(**args)
6148
+ end
6149
+
6150
+ # Update properties of this object
6151
+ def update!(**args)
6152
+ @fhir_store = args[:fhir_store] if args.key?(:fhir_store)
6153
+ end
6154
+ end
6155
+
5983
6156
  # Configuration for the FHIR BigQuery schema. Determines how the server
5984
6157
  # generates the schema.
5985
6158
  class SchemaConfig
@@ -6346,6 +6519,45 @@ module Google
6346
6519
  end
6347
6520
  end
6348
6521
 
6522
+ # Request message for `SetBlobStorageSettings` method.
6523
+ class SetBlobStorageSettingsRequest
6524
+ include Google::Apis::Core::Hashable
6525
+
6526
+ # Settings for data stored in Blob storage.
6527
+ # Corresponds to the JSON property `blobStorageSettings`
6528
+ # @return [Google::Apis::HealthcareV1beta1::BlobStorageSettings]
6529
+ attr_accessor :blob_storage_settings
6530
+
6531
+ # Specifies the filter configuration for DICOM resources.
6532
+ # Corresponds to the JSON property `filterConfig`
6533
+ # @return [Google::Apis::HealthcareV1beta1::DicomFilterConfig]
6534
+ attr_accessor :filter_config
6535
+
6536
+ def initialize(**args)
6537
+ update!(**args)
6538
+ end
6539
+
6540
+ # Update properties of this object
6541
+ def update!(**args)
6542
+ @blob_storage_settings = args[:blob_storage_settings] if args.key?(:blob_storage_settings)
6543
+ @filter_config = args[:filter_config] if args.key?(:filter_config)
6544
+ end
6545
+ end
6546
+
6547
+ # Returns additional info in regards to a completed set blob storage settings
6548
+ # API.
6549
+ class SetBlobStorageSettingsResponse
6550
+ include Google::Apis::Core::Hashable
6551
+
6552
+ def initialize(**args)
6553
+ update!(**args)
6554
+ end
6555
+
6556
+ # Update properties of this object
6557
+ def update!(**args)
6558
+ end
6559
+ end
6560
+
6349
6561
  # Request message for `SetIamPolicy` method.
6350
6562
  class SetIamPolicyRequest
6351
6563
  include Google::Apis::Core::Hashable
@@ -6476,6 +6688,43 @@ module Google
6476
6688
  end
6477
6689
  end
6478
6690
 
6691
+ # StorageInfo encapsulates all the storage info of a resource.
6692
+ class StorageInfo
6693
+ include Google::Apis::Core::Hashable
6694
+
6695
+ # BlobStorageInfo contains details about the data stored in Blob Storage for the
6696
+ # referenced resource. Note: Storage class is only valid for DICOM and hence
6697
+ # will only be populated for DICOM resources.
6698
+ # Corresponds to the JSON property `blobStorageInfo`
6699
+ # @return [Google::Apis::HealthcareV1beta1::BlobStorageInfo]
6700
+ attr_accessor :blob_storage_info
6701
+
6702
+ # The resource whose storage info is returned. For example, to specify the
6703
+ # resource path of a DICOM Instance: `projects/`projectid`/datasets/`datasetid`/
6704
+ # dicomStores/`dicom_store_id`/dicomWeb/studi/`study_uid`/series/`series_uid`/
6705
+ # instances/`instance_uid``
6706
+ # Corresponds to the JSON property `referencedResource`
6707
+ # @return [String]
6708
+ attr_accessor :referenced_resource
6709
+
6710
+ # StructuredStorageInfo contains details about the data stored in Structured
6711
+ # Storage for the referenced resource.
6712
+ # Corresponds to the JSON property `structuredStorageInfo`
6713
+ # @return [Google::Apis::HealthcareV1beta1::StructuredStorageInfo]
6714
+ attr_accessor :structured_storage_info
6715
+
6716
+ def initialize(**args)
6717
+ update!(**args)
6718
+ end
6719
+
6720
+ # Update properties of this object
6721
+ def update!(**args)
6722
+ @blob_storage_info = args[:blob_storage_info] if args.key?(:blob_storage_info)
6723
+ @referenced_resource = args[:referenced_resource] if args.key?(:referenced_resource)
6724
+ @structured_storage_info = args[:structured_storage_info] if args.key?(:structured_storage_info)
6725
+ end
6726
+ end
6727
+
6479
6728
  # Contains configuration for streaming FHIR export.
6480
6729
  class StreamConfig
6481
6730
  include Google::Apis::Core::Hashable
@@ -6510,6 +6759,26 @@ module Google
6510
6759
  end
6511
6760
  end
6512
6761
 
6762
+ # StructuredStorageInfo contains details about the data stored in Structured
6763
+ # Storage for the referenced resource.
6764
+ class StructuredStorageInfo
6765
+ include Google::Apis::Core::Hashable
6766
+
6767
+ # Size in bytes of data stored in structured storage.
6768
+ # Corresponds to the JSON property `sizeBytes`
6769
+ # @return [Fixnum]
6770
+ attr_accessor :size_bytes
6771
+
6772
+ def initialize(**args)
6773
+ update!(**args)
6774
+ end
6775
+
6776
+ # Update properties of this object
6777
+ def update!(**args)
6778
+ @size_bytes = args[:size_bytes] if args.key?(:size_bytes)
6779
+ end
6780
+ end
6781
+
6513
6782
  # StudyMetrics contains metrics describing a DICOM study.
6514
6783
  class StudyMetrics
6515
6784
  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.57.0"
19
+ GEM_VERSION = "0.59.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 = "20231003"
25
+ REVISION = "20231101"
26
26
  end
27
27
  end
28
28
  end
@@ -154,6 +154,18 @@ module Google
154
154
  include Google::Apis::Core::JsonObjectSupport
155
155
  end
156
156
 
157
+ class BlobStorageInfo
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
163
+ class BlobStorageSettings
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
157
169
  class BoundingPoly
158
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
171
 
@@ -1096,6 +1108,24 @@ module Google
1096
1108
  include Google::Apis::Core::JsonObjectSupport
1097
1109
  end
1098
1110
 
1111
+ class RollbackFhirResourceFilteringFields
1112
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1113
+
1114
+ include Google::Apis::Core::JsonObjectSupport
1115
+ end
1116
+
1117
+ class RollbackFhirResourcesRequest
1118
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1119
+
1120
+ include Google::Apis::Core::JsonObjectSupport
1121
+ end
1122
+
1123
+ class RollbackFhirResourcesResponse
1124
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1125
+
1126
+ include Google::Apis::Core::JsonObjectSupport
1127
+ end
1128
+
1099
1129
  class SchemaConfig
1100
1130
  class Representation < Google::Apis::Core::JsonRepresentation; end
1101
1131
 
@@ -1162,6 +1192,18 @@ module Google
1162
1192
  include Google::Apis::Core::JsonObjectSupport
1163
1193
  end
1164
1194
 
1195
+ class SetBlobStorageSettingsRequest
1196
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1197
+
1198
+ include Google::Apis::Core::JsonObjectSupport
1199
+ end
1200
+
1201
+ class SetBlobStorageSettingsResponse
1202
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1203
+
1204
+ include Google::Apis::Core::JsonObjectSupport
1205
+ end
1206
+
1165
1207
  class SetIamPolicyRequest
1166
1208
  class Representation < Google::Apis::Core::JsonRepresentation; end
1167
1209
 
@@ -1180,12 +1222,24 @@ module Google
1180
1222
  include Google::Apis::Core::JsonObjectSupport
1181
1223
  end
1182
1224
 
1225
+ class StorageInfo
1226
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1227
+
1228
+ include Google::Apis::Core::JsonObjectSupport
1229
+ end
1230
+
1183
1231
  class StreamConfig
1184
1232
  class Representation < Google::Apis::Core::JsonRepresentation; end
1185
1233
 
1186
1234
  include Google::Apis::Core::JsonObjectSupport
1187
1235
  end
1188
1236
 
1237
+ class StructuredStorageInfo
1238
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1239
+
1240
+ include Google::Apis::Core::JsonObjectSupport
1241
+ end
1242
+
1189
1243
  class StudyMetrics
1190
1244
  class Representation < Google::Apis::Core::JsonRepresentation; end
1191
1245
 
@@ -1478,6 +1532,22 @@ module Google
1478
1532
  end
1479
1533
  end
1480
1534
 
1535
+ class BlobStorageInfo
1536
+ # @private
1537
+ class Representation < Google::Apis::Core::JsonRepresentation
1538
+ property :size_bytes, :numeric_string => true, as: 'sizeBytes'
1539
+ property :storage_class, as: 'storageClass'
1540
+ property :storage_class_update_time, as: 'storageClassUpdateTime'
1541
+ end
1542
+ end
1543
+
1544
+ class BlobStorageSettings
1545
+ # @private
1546
+ class Representation < Google::Apis::Core::JsonRepresentation
1547
+ property :blob_storage_class, as: 'blobStorageClass'
1548
+ end
1549
+ end
1550
+
1481
1551
  class BoundingPoly
1482
1552
  # @private
1483
1553
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2429,6 +2499,8 @@ module Google
2429
2499
  class ImportDicomDataRequest
2430
2500
  # @private
2431
2501
  class Representation < Google::Apis::Core::JsonRepresentation
2502
+ property :blob_storage_settings, as: 'blobStorageSettings', class: Google::Apis::HealthcareV1beta1::BlobStorageSettings, decorator: Google::Apis::HealthcareV1beta1::BlobStorageSettings::Representation
2503
+
2432
2504
  property :gcs_source, as: 'gcsSource', class: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomGcsSource, decorator: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomGcsSource::Representation
2433
2505
 
2434
2506
  end
@@ -2911,6 +2983,36 @@ module Google
2911
2983
  end
2912
2984
  end
2913
2985
 
2986
+ class RollbackFhirResourceFilteringFields
2987
+ # @private
2988
+ class Representation < Google::Apis::Core::JsonRepresentation
2989
+ property :metadata_filter, as: 'metadataFilter'
2990
+ collection :operation_ids, as: 'operationIds'
2991
+ end
2992
+ end
2993
+
2994
+ class RollbackFhirResourcesRequest
2995
+ # @private
2996
+ class Representation < Google::Apis::Core::JsonRepresentation
2997
+ property :change_type, as: 'changeType'
2998
+ property :exclude_rollbacks, as: 'excludeRollbacks'
2999
+ property :filtering_fields, as: 'filteringFields', class: Google::Apis::HealthcareV1beta1::RollbackFhirResourceFilteringFields, decorator: Google::Apis::HealthcareV1beta1::RollbackFhirResourceFilteringFields::Representation
3000
+
3001
+ property :force, as: 'force'
3002
+ property :input_gcs_object, as: 'inputGcsObject'
3003
+ property :result_gcs_bucket, as: 'resultGcsBucket'
3004
+ property :rollback_time, as: 'rollbackTime'
3005
+ collection :type, as: 'type'
3006
+ end
3007
+ end
3008
+
3009
+ class RollbackFhirResourcesResponse
3010
+ # @private
3011
+ class Representation < Google::Apis::Core::JsonRepresentation
3012
+ property :fhir_store, as: 'fhirStore'
3013
+ end
3014
+ end
3015
+
2914
3016
  class SchemaConfig
2915
3017
  # @private
2916
3018
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3013,6 +3115,22 @@ module Google
3013
3115
  end
3014
3116
  end
3015
3117
 
3118
+ class SetBlobStorageSettingsRequest
3119
+ # @private
3120
+ class Representation < Google::Apis::Core::JsonRepresentation
3121
+ property :blob_storage_settings, as: 'blobStorageSettings', class: Google::Apis::HealthcareV1beta1::BlobStorageSettings, decorator: Google::Apis::HealthcareV1beta1::BlobStorageSettings::Representation
3122
+
3123
+ property :filter_config, as: 'filterConfig', class: Google::Apis::HealthcareV1beta1::DicomFilterConfig, decorator: Google::Apis::HealthcareV1beta1::DicomFilterConfig::Representation
3124
+
3125
+ end
3126
+ end
3127
+
3128
+ class SetBlobStorageSettingsResponse
3129
+ # @private
3130
+ class Representation < Google::Apis::Core::JsonRepresentation
3131
+ end
3132
+ end
3133
+
3016
3134
  class SetIamPolicyRequest
3017
3135
  # @private
3018
3136
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3042,6 +3160,17 @@ module Google
3042
3160
  end
3043
3161
  end
3044
3162
 
3163
+ class StorageInfo
3164
+ # @private
3165
+ class Representation < Google::Apis::Core::JsonRepresentation
3166
+ property :blob_storage_info, as: 'blobStorageInfo', class: Google::Apis::HealthcareV1beta1::BlobStorageInfo, decorator: Google::Apis::HealthcareV1beta1::BlobStorageInfo::Representation
3167
+
3168
+ property :referenced_resource, as: 'referencedResource'
3169
+ property :structured_storage_info, as: 'structuredStorageInfo', class: Google::Apis::HealthcareV1beta1::StructuredStorageInfo, decorator: Google::Apis::HealthcareV1beta1::StructuredStorageInfo::Representation
3170
+
3171
+ end
3172
+ end
3173
+
3045
3174
  class StreamConfig
3046
3175
  # @private
3047
3176
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3053,6 +3182,13 @@ module Google
3053
3182
  end
3054
3183
  end
3055
3184
 
3185
+ class StructuredStorageInfo
3186
+ # @private
3187
+ class Representation < Google::Apis::Core::JsonRepresentation
3188
+ property :size_bytes, :numeric_string => true, as: 'sizeBytes'
3189
+ end
3190
+ end
3191
+
3056
3192
  class StudyMetrics
3057
3193
  # @private
3058
3194
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2966,9 +2966,8 @@ module Google
2966
2966
  # SearchForInstances, see [Search transaction](https://cloud.google.com/
2967
2967
  # healthcare/docs/dicom#search_transaction) in the Cloud Healthcare API
2968
2968
  # conformance statement. For samples that show how to call SearchForInstances,
2969
- # see [Searching for studies, series, instances, and frames](https://cloud.
2970
- # google.com/healthcare/docs/how-tos/dicomweb#
2971
- # searching_for_studies_series_instances_and_frames).
2969
+ # see [Search for DICOM data](https://cloud.google.com/healthcare/docs/how-tos/
2970
+ # dicomweb#search-dicom).
2972
2971
  # @param [String] parent
2973
2972
  # The name of the DICOM store that is being accessed. For example, `projects/`
2974
2973
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3010,9 +3009,8 @@ module Google
3010
3009
  # For details on the implementation of SearchForSeries, see [Search transaction]
3011
3010
  # (https://cloud.google.com/healthcare/docs/dicom#search_transaction) in the
3012
3011
  # Cloud Healthcare API conformance statement. For samples that show how to call
3013
- # SearchForSeries, see [Searching for studies, series, instances, and frames](
3014
- # https://cloud.google.com/healthcare/docs/how-tos/dicomweb#
3015
- # searching_for_studies_series_instances_and_frames).
3012
+ # SearchForSeries, see [Search for DICOM data](https://cloud.google.com/
3013
+ # healthcare/docs/how-tos/dicomweb#search-dicom).
3016
3014
  # @param [String] parent
3017
3015
  # The name of the DICOM store that is being accessed. For example, `projects/`
3018
3016
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3053,9 +3051,8 @@ module Google
3053
3051
  # For details on the implementation of SearchForStudies, see [Search
3054
3052
  # transaction](https://cloud.google.com/healthcare/docs/dicom#search_transaction)
3055
3053
  # in the Cloud Healthcare API conformance statement. For samples that show how
3056
- # to call SearchForStudies, see [Searching for studies, series, instances, and
3057
- # frames](https://cloud.google.com/healthcare/docs/how-tos/dicomweb#
3058
- # searching_for_studies_series_instances_and_frames).
3054
+ # to call SearchForStudies, see [Search for DICOM data](https://cloud.google.com/
3055
+ # healthcare/docs/how-tos/dicomweb#search-dicom).
3059
3056
  # @param [String] parent
3060
3057
  # The name of the DICOM store that is being accessed. For example, `projects/`
3061
3058
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3090,6 +3087,48 @@ module Google
3090
3087
  execute_or_queue_command(command, &block)
3091
3088
  end
3092
3089
 
3090
+ # SetBlobStorageSettings sets the blob storage settings of the specified
3091
+ # resources.
3092
+ # @param [String] resource
3093
+ # Required. The path of the resource to update the blob storage settings in the
3094
+ # format of `projects/`projectID`/datasets/`datasetID`/dicomStores/`dicomStoreID`
3095
+ # /dicomWeb/studies/`studyUID``, `projects/`projectID`/datasets/`datasetID`/
3096
+ # dicomStores/`dicomStoreID`/dicomWeb/studies/`studyUID`/series/`seriesUID`/`,
3097
+ # or `projects/`projectID`/datasets/`datasetID`/dicomStores/`dicomStoreID`/
3098
+ # dicomWeb/studies/`studyUID`/series/`seriesUID`/instances/`instanceUID``. If `
3099
+ # filter_config` is specified, set the value of `resource` to the resource name
3100
+ # of a DICOM store in the format `projects/`projectID`/datasets/`datasetID`/
3101
+ # dicomStores/`dicomStoreID``.
3102
+ # @param [Google::Apis::HealthcareV1beta1::SetBlobStorageSettingsRequest] set_blob_storage_settings_request_object
3103
+ # @param [String] fields
3104
+ # Selector specifying which fields to include in a partial response.
3105
+ # @param [String] quota_user
3106
+ # Available to use for quota purposes for server-side applications. Can be any
3107
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3108
+ # @param [Google::Apis::RequestOptions] options
3109
+ # Request-specific options
3110
+ #
3111
+ # @yield [result, err] Result & error if block supplied
3112
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::Operation] parsed result object
3113
+ # @yieldparam err [StandardError] error object if request failed
3114
+ #
3115
+ # @return [Google::Apis::HealthcareV1beta1::Operation]
3116
+ #
3117
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3118
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3119
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3120
+ def set_dicom_store_blob_storage_settings(resource, set_blob_storage_settings_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
3121
+ command = make_simple_command(:post, 'v1beta1/{+resource}:setBlobStorageSettings', options)
3122
+ command.request_representation = Google::Apis::HealthcareV1beta1::SetBlobStorageSettingsRequest::Representation
3123
+ command.request_object = set_blob_storage_settings_request_object
3124
+ command.response_representation = Google::Apis::HealthcareV1beta1::Operation::Representation
3125
+ command.response_class = Google::Apis::HealthcareV1beta1::Operation
3126
+ command.params['resource'] = resource unless resource.nil?
3127
+ command.query['fields'] = fields unless fields.nil?
3128
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3129
+ execute_or_queue_command(command, &block)
3130
+ end
3131
+
3093
3132
  # Sets the access control policy on the specified resource. Replaces any
3094
3133
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
3095
3134
  # PERMISSION_DENIED` errors.
@@ -3133,8 +3172,8 @@ module Google
3133
3172
  # implementation of StoreInstances, see [Store transaction](https://cloud.google.
3134
3173
  # com/healthcare/docs/dicom#store_transaction) in the Cloud Healthcare API
3135
3174
  # conformance statement. For samples that show how to call StoreInstances, see [
3136
- # Storing DICOM data](https://cloud.google.com/healthcare/docs/how-tos/dicomweb#
3137
- # storing_dicom_data).
3175
+ # Store DICOM data](https://cloud.google.com/healthcare/docs/how-tos/dicomweb#
3176
+ # store-dicom).
3138
3177
  # @param [String] parent
3139
3178
  # The name of the DICOM store that is being accessed. For example, `projects/`
3140
3179
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3244,6 +3283,48 @@ module Google
3244
3283
  execute_or_queue_command(command, &block)
3245
3284
  end
3246
3285
 
3286
+ # SetBlobStorageSettings sets the blob storage settings of the specified
3287
+ # resources.
3288
+ # @param [String] resource
3289
+ # Required. The path of the resource to update the blob storage settings in the
3290
+ # format of `projects/`projectID`/datasets/`datasetID`/dicomStores/`dicomStoreID`
3291
+ # /dicomWeb/studies/`studyUID``, `projects/`projectID`/datasets/`datasetID`/
3292
+ # dicomStores/`dicomStoreID`/dicomWeb/studies/`studyUID`/series/`seriesUID`/`,
3293
+ # or `projects/`projectID`/datasets/`datasetID`/dicomStores/`dicomStoreID`/
3294
+ # dicomWeb/studies/`studyUID`/series/`seriesUID`/instances/`instanceUID``. If `
3295
+ # filter_config` is specified, set the value of `resource` to the resource name
3296
+ # of a DICOM store in the format `projects/`projectID`/datasets/`datasetID`/
3297
+ # dicomStores/`dicomStoreID``.
3298
+ # @param [Google::Apis::HealthcareV1beta1::SetBlobStorageSettingsRequest] set_blob_storage_settings_request_object
3299
+ # @param [String] fields
3300
+ # Selector specifying which fields to include in a partial response.
3301
+ # @param [String] quota_user
3302
+ # Available to use for quota purposes for server-side applications. Can be any
3303
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3304
+ # @param [Google::Apis::RequestOptions] options
3305
+ # Request-specific options
3306
+ #
3307
+ # @yield [result, err] Result & error if block supplied
3308
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::Operation] parsed result object
3309
+ # @yieldparam err [StandardError] error object if request failed
3310
+ #
3311
+ # @return [Google::Apis::HealthcareV1beta1::Operation]
3312
+ #
3313
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3314
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3315
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3316
+ def set_study_blob_storage_settings(resource, set_blob_storage_settings_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
3317
+ command = make_simple_command(:post, 'v1beta1/{+resource}:setBlobStorageSettings', options)
3318
+ command.request_representation = Google::Apis::HealthcareV1beta1::SetBlobStorageSettingsRequest::Representation
3319
+ command.request_object = set_blob_storage_settings_request_object
3320
+ command.response_representation = Google::Apis::HealthcareV1beta1::Operation::Representation
3321
+ command.response_class = Google::Apis::HealthcareV1beta1::Operation
3322
+ command.params['resource'] = resource unless resource.nil?
3323
+ command.query['fields'] = fields unless fields.nil?
3324
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3325
+ execute_or_queue_command(command, &block)
3326
+ end
3327
+
3247
3328
  # GetSeriesMetrics returns metrics for a series.
3248
3329
  # @param [String] series
3249
3330
  # The series resource path. For example, `projects/`project_id`/locations/`
@@ -3276,13 +3357,46 @@ module Google
3276
3357
  execute_or_queue_command(command, &block)
3277
3358
  end
3278
3359
 
3360
+ # GetStorageInfo returns the storage info of the specified resource.
3361
+ # @param [String] resource
3362
+ # Required. The path of the resource for which the storage info is requested (
3363
+ # for exaxmple for a DICOM Instance: `projects/`projectid`/datasets/`datasetid`/
3364
+ # dicomStores/`dicomStoreId`/dicomWeb/studies/`study_uid`/series/`series_uid`/
3365
+ # instances/`instance_uid``)
3366
+ # @param [String] fields
3367
+ # Selector specifying which fields to include in a partial response.
3368
+ # @param [String] quota_user
3369
+ # Available to use for quota purposes for server-side applications. Can be any
3370
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3371
+ # @param [Google::Apis::RequestOptions] options
3372
+ # Request-specific options
3373
+ #
3374
+ # @yield [result, err] Result & error if block supplied
3375
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::StorageInfo] parsed result object
3376
+ # @yieldparam err [StandardError] error object if request failed
3377
+ #
3378
+ # @return [Google::Apis::HealthcareV1beta1::StorageInfo]
3379
+ #
3380
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3381
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3382
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3383
+ def get_project_location_dataset_dicom_store_dicom_web_study_series_instance_storage_info(resource, fields: nil, quota_user: nil, options: nil, &block)
3384
+ command = make_simple_command(:get, 'v1beta1/{+resource}:getStorageInfo', options)
3385
+ command.response_representation = Google::Apis::HealthcareV1beta1::StorageInfo::Representation
3386
+ command.response_class = Google::Apis::HealthcareV1beta1::StorageInfo
3387
+ command.params['resource'] = resource unless resource.nil?
3388
+ command.query['fields'] = fields unless fields.nil?
3389
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3390
+ execute_or_queue_command(command, &block)
3391
+ end
3392
+
3279
3393
  # DeleteStudy deletes all instances within the given study using a long running
3280
3394
  # operation. The method returns an Operation which will be marked successful
3281
3395
  # when the deletion is complete. Warning: Instances cannot be inserted into a
3282
3396
  # study that is being deleted by an operation until the operation completes. For
3283
- # samples that show how to call DeleteStudy, see [Deleting a study, series, or
3284
- # instance](https://cloud.google.com/healthcare/docs/how-tos/dicomweb#
3285
- # deleting_a_study_series_or_instance).
3397
+ # samples that show how to call DeleteStudy, see [Delete a study, series, or
3398
+ # instance](https://cloud.google.com/healthcare/docs/how-tos/dicomweb#delete-
3399
+ # dicom).
3286
3400
  # @param [String] parent
3287
3401
  # @param [String] dicom_web_path
3288
3402
  # The path of the DeleteStudy request. For example, `studies/`study_uid``.
@@ -3320,8 +3434,8 @@ module Google
3320
3434
  # For details on the implementation of RetrieveStudyMetadata, see [Metadata
3321
3435
  # resources](https://cloud.google.com/healthcare/docs/dicom#metadata_resources)
3322
3436
  # in the Cloud Healthcare API conformance statement. For samples that show how
3323
- # to call RetrieveStudyMetadata, see [Retrieving metadata](https://cloud.google.
3324
- # com/healthcare/docs/how-tos/dicomweb#retrieving_metadata).
3437
+ # to call RetrieveStudyMetadata, see [Retrieve metadata](https://cloud.google.
3438
+ # com/healthcare/docs/how-tos/dicomweb#retrieve-metadata).
3325
3439
  # @param [String] parent
3326
3440
  # The name of the DICOM store that is being accessed. For example, `projects/`
3327
3441
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3362,9 +3476,9 @@ module Google
3362
3476
  # part18.html#sect_10.4). For details on the implementation of RetrieveStudy,
3363
3477
  # see [DICOM study/series/instances](https://cloud.google.com/healthcare/docs/
3364
3478
  # dicom#dicom_studyseriesinstances) in the Cloud Healthcare API conformance
3365
- # statement. For samples that show how to call RetrieveStudy, see [Retrieving
3366
- # DICOM data](https://cloud.google.com/healthcare/docs/how-tos/dicomweb#
3367
- # retrieving_dicom_data).
3479
+ # statement. For samples that show how to call RetrieveStudy, see [Retrieve
3480
+ # DICOM data](https://cloud.google.com/healthcare/docs/how-tos/dicomweb#retrieve-
3481
+ # dicom).
3368
3482
  # @param [String] parent
3369
3483
  # The name of the DICOM store that is being accessed. For example, `projects/`
3370
3484
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3406,9 +3520,8 @@ module Google
3406
3520
  # SearchForInstances, see [Search transaction](https://cloud.google.com/
3407
3521
  # healthcare/docs/dicom#search_transaction) in the Cloud Healthcare API
3408
3522
  # conformance statement. For samples that show how to call SearchForInstances,
3409
- # see [Searching for studies, series, instances, and frames](https://cloud.
3410
- # google.com/healthcare/docs/how-tos/dicomweb#
3411
- # searching_for_studies_series_instances_and_frames).
3523
+ # see [Search for DICOM data](https://cloud.google.com/healthcare/docs/how-tos/
3524
+ # dicomweb#search-dicom).
3412
3525
  # @param [String] parent
3413
3526
  # The name of the DICOM store that is being accessed. For example, `projects/`
3414
3527
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3450,9 +3563,8 @@ module Google
3450
3563
  # For details on the implementation of SearchForSeries, see [Search transaction]
3451
3564
  # (https://cloud.google.com/healthcare/docs/dicom#search_transaction) in the
3452
3565
  # Cloud Healthcare API conformance statement. For samples that show how to call
3453
- # SearchForSeries, see [Searching for studies, series, instances, and frames](
3454
- # https://cloud.google.com/healthcare/docs/how-tos/dicomweb#
3455
- # searching_for_studies_series_instances_and_frames).
3566
+ # SearchForSeries, see [Search for DICOM data](https://cloud.google.com/
3567
+ # healthcare/docs/how-tos/dicomweb#search-dicom).
3456
3568
  # @param [String] parent
3457
3569
  # The name of the DICOM store that is being accessed. For example, `projects/`
3458
3570
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3494,8 +3606,8 @@ module Google
3494
3606
  # implementation of StoreInstances, see [Store transaction](https://cloud.google.
3495
3607
  # com/healthcare/docs/dicom#store_transaction) in the Cloud Healthcare API
3496
3608
  # conformance statement. For samples that show how to call StoreInstances, see [
3497
- # Storing DICOM data](https://cloud.google.com/healthcare/docs/how-tos/dicomweb#
3498
- # storing_dicom_data).
3609
+ # Store DICOM data](https://cloud.google.com/healthcare/docs/how-tos/dicomweb#
3610
+ # store-dicom).
3499
3611
  # @param [String] parent
3500
3612
  # The name of the DICOM store that is being accessed. For example, `projects/`
3501
3613
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3539,8 +3651,8 @@ module Google
3539
3651
  # successful when the deletion is complete. Warning: Instances cannot be
3540
3652
  # inserted into a series that is being deleted by an operation until the
3541
3653
  # operation completes. For samples that show how to call DeleteSeries, see [
3542
- # Deleting a study, series, or instance](https://cloud.google.com/healthcare/
3543
- # docs/how-tos/dicomweb#deleting_a_study_series_or_instance).
3654
+ # Delete a study, series, or instance](https://cloud.google.com/healthcare/docs/
3655
+ # how-tos/dicomweb#delete-dicom).
3544
3656
  # @param [String] parent
3545
3657
  # The name of the DICOM store that is being accessed. For example, `projects/`
3546
3658
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3583,8 +3695,8 @@ module Google
3583
3695
  # RetrieveSeriesMetadata, see [Metadata resources](https://cloud.google.com/
3584
3696
  # healthcare/docs/dicom#metadata_resources) in the Cloud Healthcare API
3585
3697
  # conformance statement. For samples that show how to call
3586
- # RetrieveSeriesMetadata, see [Retrieving metadata](https://cloud.google.com/
3587
- # healthcare/docs/how-tos/dicomweb#retrieving_metadata).
3698
+ # RetrieveSeriesMetadata, see [Retrieve metadata](https://cloud.google.com/
3699
+ # healthcare/docs/how-tos/dicomweb#retrieve-metadata).
3588
3700
  # @param [String] parent
3589
3701
  # The name of the DICOM store that is being accessed. For example, `projects/`
3590
3702
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3625,9 +3737,9 @@ module Google
3625
3737
  # part18.html#sect_10.4). For details on the implementation of RetrieveSeries,
3626
3738
  # see [DICOM study/series/instances](https://cloud.google.com/healthcare/docs/
3627
3739
  # dicom#dicom_studyseriesinstances) in the Cloud Healthcare API conformance
3628
- # statement. For samples that show how to call RetrieveSeries, see [Retrieving
3629
- # DICOM data](https://cloud.google.com/healthcare/docs/how-tos/dicomweb#
3630
- # retrieving_dicom_data).
3740
+ # statement. For samples that show how to call RetrieveSeries, see [Retrieve
3741
+ # DICOM data](https://cloud.google.com/healthcare/docs/how-tos/dicomweb#retrieve-
3742
+ # dicom).
3631
3743
  # @param [String] parent
3632
3744
  # The name of the DICOM store that is being accessed. For example, `projects/`
3633
3745
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3669,9 +3781,8 @@ module Google
3669
3781
  # SearchForInstances, see [Search transaction](https://cloud.google.com/
3670
3782
  # healthcare/docs/dicom#search_transaction) in the Cloud Healthcare API
3671
3783
  # conformance statement. For samples that show how to call SearchForInstances,
3672
- # see [Searching for studies, series, instances, and frames](https://cloud.
3673
- # google.com/healthcare/docs/how-tos/dicomweb#
3674
- # searching_for_studies_series_instances_and_frames).
3784
+ # see [Search for DICOM data](https://cloud.google.com/healthcare/docs/how-tos/
3785
+ # dicomweb#search-dicom).
3675
3786
  # @param [String] parent
3676
3787
  # The name of the DICOM store that is being accessed. For example, `projects/`
3677
3788
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3712,9 +3823,9 @@ module Google
3712
3823
  # and SOP Instance UID. Delete requests are equivalent to the GET requests
3713
3824
  # specified in the Retrieve transaction. Study and series search results can
3714
3825
  # take a few seconds to be updated after an instance is deleted using
3715
- # DeleteInstance. For samples that show how to call DeleteInstance, see [
3716
- # Deleting a study, series, or instance](https://cloud.google.com/healthcare/
3717
- # docs/how-tos/dicomweb#deleting_a_study_series_or_instance).
3826
+ # DeleteInstance. For samples that show how to call DeleteInstance, see [Delete
3827
+ # a study, series, or instance](https://cloud.google.com/healthcare/docs/how-tos/
3828
+ # dicomweb#delete-dicom).
3718
3829
  # @param [String] parent
3719
3830
  # The name of the DICOM store that is being accessed. For example, `projects/`
3720
3831
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3757,8 +3868,8 @@ module Google
3757
3868
  # cloud.google.com/healthcare/docs/dicom#dicom_studyseriesinstances) and [DICOM
3758
3869
  # instances](https://cloud.google.com/healthcare/docs/dicom#dicom_instances) in
3759
3870
  # the Cloud Healthcare API conformance statement. For samples that show how to
3760
- # call RetrieveInstance, see [Retrieving an instance](https://cloud.google.com/
3761
- # healthcare/docs/how-tos/dicomweb#retrieving_an_instance).
3871
+ # call RetrieveInstance, see [Retrieve an instance](https://cloud.google.com/
3872
+ # healthcare/docs/how-tos/dicomweb#retrieve-instance).
3762
3873
  # @param [String] parent
3763
3874
  # The name of the DICOM store that is being accessed. For example, `projects/`
3764
3875
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3801,8 +3912,8 @@ module Google
3801
3912
  # RetrieveInstanceMetadata, see [Metadata resources](https://cloud.google.com/
3802
3913
  # healthcare/docs/dicom#metadata_resources) in the Cloud Healthcare API
3803
3914
  # conformance statement. For samples that show how to call
3804
- # RetrieveInstanceMetadata, see [Retrieving metadata](https://cloud.google.com/
3805
- # healthcare/docs/how-tos/dicomweb#retrieving_metadata).
3915
+ # RetrieveInstanceMetadata, see [Retrieve metadata](https://cloud.google.com/
3916
+ # healthcare/docs/how-tos/dicomweb#retrieve-metadata).
3806
3917
  # @param [String] parent
3807
3918
  # The name of the DICOM store that is being accessed. For example, `projects/`
3808
3919
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3845,9 +3956,8 @@ module Google
3845
3956
  # RetrieveRenderedInstance, see [Rendered resources](https://cloud.google.com/
3846
3957
  # healthcare/docs/dicom#rendered_resources) in the Cloud Healthcare API
3847
3958
  # conformance statement. For samples that show how to call
3848
- # RetrieveRenderedInstance, see [Retrieving consumer image formats](https://
3849
- # cloud.google.com/healthcare/docs/how-tos/dicomweb#
3850
- # retrieving_consumer_image_formats).
3959
+ # RetrieveRenderedInstance, see [Retrieve consumer image formats](https://cloud.
3960
+ # google.com/healthcare/docs/how-tos/dicomweb#retrieve-consumer).
3851
3961
  # @param [String] parent
3852
3962
  # The name of the DICOM store that is being accessed. For example, `projects/`
3853
3963
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3889,8 +3999,8 @@ module Google
3889
3999
  # the implementation of RetrieveFrames, see [DICOM frames](https://cloud.google.
3890
4000
  # com/healthcare/docs/dicom#dicom_frames) in the Cloud Healthcare API
3891
4001
  # conformance statement. For samples that show how to call RetrieveFrames, see [
3892
- # Retrieving DICOM data](https://cloud.google.com/healthcare/docs/how-tos/
3893
- # dicomweb#retrieving_dicom_data).
4002
+ # Retrieve DICOM data](https://cloud.google.com/healthcare/docs/how-tos/dicomweb#
4003
+ # retrieve-dicom).
3894
4004
  # @param [String] parent
3895
4005
  # The name of the DICOM store that is being accessed. For example, `projects/`
3896
4006
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -3933,8 +4043,8 @@ module Google
3933
4043
  # RetrieveRenderedFrames, see [Rendered resources](https://cloud.google.com/
3934
4044
  # healthcare/docs/dicom#rendered_resources) in the Cloud Healthcare API
3935
4045
  # conformance statement. For samples that show how to call
3936
- # RetrieveRenderedFrames, see [Retrieving consumer image formats](https://cloud.
3937
- # google.com/healthcare/docs/how-tos/dicomweb#retrieving_consumer_image_formats).
4046
+ # RetrieveRenderedFrames, see [Retrieve consumer image formats](https://cloud.
4047
+ # google.com/healthcare/docs/how-tos/dicomweb#retrieve-consumer).
3938
4048
  # @param [String] parent
3939
4049
  # The name of the DICOM store that is being accessed. For example, `projects/`
3940
4050
  # project_id`/locations/`location_id`/datasets/`dataset_id`/dicomStores/`
@@ -4545,6 +4655,48 @@ module Google
4545
4655
  execute_or_queue_command(command, &block)
4546
4656
  end
4547
4657
 
4658
+ # Rolls back resources from the FHIR store to the specified time. This method
4659
+ # returns an Operation that can be used to track the status of the rollback by
4660
+ # calling GetOperation. Immediate fatal errors appear in the error field, errors
4661
+ # are also logged to Cloud Logging (see [Viewing error logs in Cloud Logging](
4662
+ # https://cloud.google.com/healthcare/docs/how-tos/logging)). Otherwise, when
4663
+ # the operation finishes, a detailed response of type
4664
+ # RollbackFhirResourcesResponse is returned in the response field. The metadata
4665
+ # field type for this operation is OperationMetadata.
4666
+ # @param [String] name
4667
+ # Required. The name of the FHIR store to rollback, in the format of "projects/`
4668
+ # project_id`/locations/`location_id`/datasets/`dataset_id` /fhirStores/`
4669
+ # fhir_store_id`".
4670
+ # @param [Google::Apis::HealthcareV1beta1::RollbackFhirResourcesRequest] rollback_fhir_resources_request_object
4671
+ # @param [String] fields
4672
+ # Selector specifying which fields to include in a partial response.
4673
+ # @param [String] quota_user
4674
+ # Available to use for quota purposes for server-side applications. Can be any
4675
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4676
+ # @param [Google::Apis::RequestOptions] options
4677
+ # Request-specific options
4678
+ #
4679
+ # @yield [result, err] Result & error if block supplied
4680
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::Operation] parsed result object
4681
+ # @yieldparam err [StandardError] error object if request failed
4682
+ #
4683
+ # @return [Google::Apis::HealthcareV1beta1::Operation]
4684
+ #
4685
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4686
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4687
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4688
+ def rollback_fhir_store_fhir_resources(name, rollback_fhir_resources_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
4689
+ command = make_simple_command(:post, 'v1beta1/{+name}:rollback', options)
4690
+ command.request_representation = Google::Apis::HealthcareV1beta1::RollbackFhirResourcesRequest::Representation
4691
+ command.request_object = rollback_fhir_resources_request_object
4692
+ command.response_representation = Google::Apis::HealthcareV1beta1::Operation::Representation
4693
+ command.response_class = Google::Apis::HealthcareV1beta1::Operation
4694
+ command.params['name'] = name unless name.nil?
4695
+ command.query['fields'] = fields unless fields.nil?
4696
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4697
+ execute_or_queue_command(command, &block)
4698
+ end
4699
+
4548
4700
  # Sets the access control policy on the specified resource. Replaces any
4549
4701
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
4550
4702
  # PERMISSION_DENIED` errors.
@@ -5705,10 +5857,26 @@ module Google
5705
5857
  # 50,000 might not be fully searchable as the server might trim its generated
5706
5858
  # search index in those cases. Note: FHIR resources are indexed asynchronously,
5707
5859
  # so there might be a slight delay between the time a resource is created or
5708
- # changes and when the change is reflected in search results. For samples and
5709
- # detailed information, see [Searching for FHIR resources](https://cloud.google.
5710
- # com/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](
5711
- # https://cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
5860
+ # changed, and the time when the change reflects in search results. The only
5861
+ # exception is resource identifier data, which is indexed synchronously as a
5862
+ # special index. As a result, searching using resource identifier is not subject
5863
+ # to indexing delay. To use the special synchronous index, the search term for
5864
+ # identifier should be in the pattern `identifier=[system]|[value]` or `
5865
+ # identifier=[value]`, and any of the following search result parameters can be
5866
+ # used: * `_count` * `_include` * `_revinclude` * `_summary` * `_elements` If
5867
+ # your query contains any other search parameters, the standard asynchronous
5868
+ # index will be used instead. Note that searching against the special index is
5869
+ # optimized for resolving a small number of matches. The search isn't optimized
5870
+ # if your identifier search criteria matches a large number (i.e. more than 2,
5871
+ # 000) of resources. For a search query that will match a large number of
5872
+ # resources, you can avoiding using the special synchronous index by including
5873
+ # an additional `_sort` parameter in your query. Use `_sort=-_lastUpdated` if
5874
+ # you want to keep the default sorting order. Note: The special synchronous
5875
+ # identifier index are currently disabled for DocumentReference and
5876
+ # DocumentManifest searches. For samples and detailed information, see [
5877
+ # Searching for FHIR resources](https://cloud.google.com/healthcare/docs/how-tos/
5878
+ # fhir-search) and [Advanced FHIR search features](https://cloud.google.com/
5879
+ # healthcare/docs/how-tos/fhir-advanced-search).
5712
5880
  # @param [String] parent
5713
5881
  # Name of the FHIR store to retrieve resources from.
5714
5882
  # @param [Google::Apis::HealthcareV1beta1::SearchResourcesRequest] search_resources_request_object
@@ -5783,10 +5951,26 @@ module Google
5783
5951
  # 50,000 might not be fully searchable as the server might trim its generated
5784
5952
  # search index in those cases. Note: FHIR resources are indexed asynchronously,
5785
5953
  # so there might be a slight delay between the time a resource is created or
5786
- # changes and when the change is reflected in search results. For samples and
5787
- # detailed information, see [Searching for FHIR resources](https://cloud.google.
5788
- # com/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](
5789
- # https://cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
5954
+ # changed, and the time when the change reflects in search results. The only
5955
+ # exception is resource identifier data, which is indexed synchronously as a
5956
+ # special index. As a result, searching using resource identifier is not subject
5957
+ # to indexing delay. To use the special synchronous index, the search term for
5958
+ # identifier should be in the pattern `identifier=[system]|[value]` or `
5959
+ # identifier=[value]`, and any of the following search result parameters can be
5960
+ # used: * `_count` * `_include` * `_revinclude` * `_summary` * `_elements` If
5961
+ # your query contains any other search parameters, the standard asynchronous
5962
+ # index will be used instead. Note that searching against the special index is
5963
+ # optimized for resolving a small number of matches. The search isn't optimized
5964
+ # if your identifier search criteria matches a large number (i.e. more than 2,
5965
+ # 000) of resources. For a search query that will match a large number of
5966
+ # resources, you can avoiding using the special synchronous index by including
5967
+ # an additional `_sort` parameter in your query. Use `_sort=-_lastUpdated` if
5968
+ # you want to keep the default sorting order. Note: The special synchronous
5969
+ # identifier index are currently disabled for DocumentReference and
5970
+ # DocumentManifest searches. For samples and detailed information, see [
5971
+ # Searching for FHIR resources](https://cloud.google.com/healthcare/docs/how-tos/
5972
+ # fhir-search) and [Advanced FHIR search features](https://cloud.google.com/
5973
+ # healthcare/docs/how-tos/fhir-advanced-search).
5790
5974
  # @param [String] parent
5791
5975
  # Name of the FHIR store to retrieve resources from.
5792
5976
  # @param [String] resource_type
@@ -6057,7 +6241,7 @@ module Google
6057
6241
  execute_or_queue_command(command, &block)
6058
6242
  end
6059
6243
 
6060
- # Gets metrics asssociated with the HL7v2 store.
6244
+ # Gets metrics associated with the HL7v2 store.
6061
6245
  # @param [String] name
6062
6246
  # The resource name of the HL7v2 store to get metrics for, in the format `
6063
6247
  # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
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.57.0
4
+ version: 0.59.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-15 00:00:00.000000000 Z
11
+ date: 2023-11-05 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.57.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.59.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: []