google-apis-healthcare_v1beta1 0.93.0 → 0.94.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: 64880c6884af1aa6d0c3248a1b1d4aa3b3347915c53dffebdc1a4d17c64138e4
4
- data.tar.gz: 2b8933d793dbe69502f7dffa8290ce6d48f5cf3349511c4989ab3f1945fc7ad6
3
+ metadata.gz: b43acc1c8251202715ee3a748eb986da2b69602c77a7a69157ad90b03992b39a
4
+ data.tar.gz: e7318a2083d714df126f9d1391ee38285913ab11ae4a7bd367d5bcc9ba1e7b83
5
5
  SHA512:
6
- metadata.gz: 4fb163d40ffeb1087d7759f1ee1d2110b032cbbe1557b2d49658b85c1ec6599c43da5cb1a83d85b4705e1a89b13df713db4b268cc4ef8700af0ecc4874008bfb
7
- data.tar.gz: 973bea15b808da8bad9442e82736c27e5fb93c560bb5ee6067d4ed5044284e81aae05a89c480400d42153850043f15b1824168a8d8ae07ec0a517eea5689bf83
6
+ metadata.gz: d5a2e7dd7d2872fe31378943e0422fa7dce7546431649d6a03c63af4acbd2505df297b238db2a2dc3b53a00e9692c4862fb74d070b66759cde8003e0f4027932
7
+ data.tar.gz: 96890d50478cabdf416a46b087a98fc626ce75f587e5d448a96ac5ed0ea80e287d7c2bbafaebd90275ea21d41f7fe62aa4ee21d93d74c3d39b891228cc0952b0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.94.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251117
6
+
3
7
  ### v0.93.0 (2025-11-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20251022
@@ -3680,6 +3680,11 @@ module Google
3680
3680
  class GoogleCloudHealthcareV1beta1DicomBigQueryDestination
3681
3681
  include Google::Apis::Core::Hashable
3682
3682
 
3683
+ # BigQuery Change Data Capture configuration.
3684
+ # Corresponds to the JSON property `changeDataCaptureConfig`
3685
+ # @return [Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig]
3686
+ attr_accessor :change_data_capture_config
3687
+
3683
3688
  # Use `write_disposition` instead. If `write_disposition` is specified, this
3684
3689
  # parameter is ignored. force=false is equivalent to write_disposition=
3685
3690
  # WRITE_EMPTY and force=true is equivalent to write_disposition=WRITE_TRUNCATE.
@@ -3688,6 +3693,40 @@ module Google
3688
3693
  attr_accessor :force
3689
3694
  alias_method :force?, :force
3690
3695
 
3696
+ # Optional. If true, the source store name will be included as a column in the
3697
+ # BigQuery schema.
3698
+ # Corresponds to the JSON property `includeSourceStore`
3699
+ # @return [Boolean]
3700
+ attr_accessor :include_source_store
3701
+ alias_method :include_source_store?, :include_source_store
3702
+
3703
+ # Using this field will flatten the DICOM instances into a BigQuery table. The
3704
+ # table will have one column for each DICOM tag. The column name will be the
3705
+ # DICOM tag's textual representation.
3706
+ # Corresponds to the JSON property `schemaFlattened`
3707
+ # @return [Google::Apis::HealthcareV1beta1::SchemaFlattened]
3708
+ attr_accessor :schema_flattened
3709
+
3710
+ # Using this field will set the schema such that all DICOM tags will be included
3711
+ # in the BigQuery table as a single JSON type column. The BigQuery table schema
3712
+ # will include the following columns: * `StudyInstanceUID` (Type: STRING): DICOM
3713
+ # Tag 0020000D. * `SeriesInstanceUID` (Type: STRING): DICOM Tag 0020000E. * `
3714
+ # SOPInstanceUID` (Type: STRING): DICOM Tag 00080018. * `SourceDicomStore` (Type:
3715
+ # STRING): The name of the source DICOM store. This field is only included if
3716
+ # the `include_source_store` option is set to true. * `Metadata` (Type: JSON):
3717
+ # All DICOM tags for the instance, stored in a single JSON object. * `
3718
+ # StructuredStorageSize` (Type: INTEGER): Size of the structured storage in
3719
+ # bytes. * `DroppedTags` (Type: STRING, Repeated: Yes): List of tags that were
3720
+ # dropped during the conversion. * `StorageClass` (Type: STRING): The storage
3721
+ # class of the instance. * `LastUpdated` (Type: TIMESTAMP): Timestamp of the
3722
+ # last update to the instance. * `BlobStorageSize` (Type: INTEGER): Size of the
3723
+ # blob storage in bytes. * `Type` (Type: STRING): Indicates the type of
3724
+ # operation (e.g., INSERT, DELETE). This field is *omitted* if `
3725
+ # ChangeDataCaptureConfig` is enabled.
3726
+ # Corresponds to the JSON property `schemaJson`
3727
+ # @return [Google::Apis::HealthcareV1beta1::SchemaJson]
3728
+ attr_accessor :schema_json
3729
+
3691
3730
  # BigQuery URI to a table, up to 2000 characters long, in the format `bq://
3692
3731
  # projectId.bqDatasetId.tableId`
3693
3732
  # Corresponds to the JSON property `tableUri`
@@ -3707,12 +3746,29 @@ module Google
3707
3746
 
3708
3747
  # Update properties of this object
3709
3748
  def update!(**args)
3749
+ @change_data_capture_config = args[:change_data_capture_config] if args.key?(:change_data_capture_config)
3710
3750
  @force = args[:force] if args.key?(:force)
3751
+ @include_source_store = args[:include_source_store] if args.key?(:include_source_store)
3752
+ @schema_flattened = args[:schema_flattened] if args.key?(:schema_flattened)
3753
+ @schema_json = args[:schema_json] if args.key?(:schema_json)
3711
3754
  @table_uri = args[:table_uri] if args.key?(:table_uri)
3712
3755
  @write_disposition = args[:write_disposition] if args.key?(:write_disposition)
3713
3756
  end
3714
3757
  end
3715
3758
 
3759
+ # BigQuery Change Data Capture configuration.
3760
+ class GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig
3761
+ include Google::Apis::Core::Hashable
3762
+
3763
+ def initialize(**args)
3764
+ update!(**args)
3765
+ end
3766
+
3767
+ # Update properties of this object
3768
+ def update!(**args)
3769
+ end
3770
+ end
3771
+
3716
3772
  # The Cloud Storage location where the server writes the output and the export
3717
3773
  # configuration.
3718
3774
  class GoogleCloudHealthcareV1beta1DicomGcsDestination
@@ -5006,8 +5062,9 @@ module Google
5006
5062
  attr_accessor :operations
5007
5063
 
5008
5064
  # Unordered list. Unreachable resources. Populated when the request sets `
5009
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
5010
- # when attempting to list all resources across all supported locations.
5065
+ # ListOperationsRequest.return_partial_success` and reads across collections.
5066
+ # For example, when attempting to list all resources across all supported
5067
+ # locations.
5011
5068
  # Corresponds to the JSON property `unreachable`
5012
5069
  # @return [Array<String>]
5013
5070
  attr_accessor :unreachable
@@ -6166,6 +6223,21 @@ module Google
6166
6223
  end
6167
6224
  end
6168
6225
 
6226
+ # Using this field will flatten the DICOM instances into a BigQuery table. The
6227
+ # table will have one column for each DICOM tag. The column name will be the
6228
+ # DICOM tag's textual representation.
6229
+ class SchemaFlattened
6230
+ include Google::Apis::Core::Hashable
6231
+
6232
+ def initialize(**args)
6233
+ update!(**args)
6234
+ end
6235
+
6236
+ # Update properties of this object
6237
+ def update!(**args)
6238
+ end
6239
+ end
6240
+
6169
6241
  # An HL7v2 logical group construct.
6170
6242
  class SchemaGroup
6171
6243
  include Google::Apis::Core::Hashable
@@ -6212,6 +6284,34 @@ module Google
6212
6284
  end
6213
6285
  end
6214
6286
 
6287
+ # Using this field will set the schema such that all DICOM tags will be included
6288
+ # in the BigQuery table as a single JSON type column. The BigQuery table schema
6289
+ # will include the following columns: * `StudyInstanceUID` (Type: STRING): DICOM
6290
+ # Tag 0020000D. * `SeriesInstanceUID` (Type: STRING): DICOM Tag 0020000E. * `
6291
+ # SOPInstanceUID` (Type: STRING): DICOM Tag 00080018. * `SourceDicomStore` (Type:
6292
+ # STRING): The name of the source DICOM store. This field is only included if
6293
+ # the `include_source_store` option is set to true. * `Metadata` (Type: JSON):
6294
+ # All DICOM tags for the instance, stored in a single JSON object. * `
6295
+ # StructuredStorageSize` (Type: INTEGER): Size of the structured storage in
6296
+ # bytes. * `DroppedTags` (Type: STRING, Repeated: Yes): List of tags that were
6297
+ # dropped during the conversion. * `StorageClass` (Type: STRING): The storage
6298
+ # class of the instance. * `LastUpdated` (Type: TIMESTAMP): Timestamp of the
6299
+ # last update to the instance. * `BlobStorageSize` (Type: INTEGER): Size of the
6300
+ # blob storage in bytes. * `Type` (Type: STRING): Indicates the type of
6301
+ # operation (e.g., INSERT, DELETE). This field is *omitted* if `
6302
+ # ChangeDataCaptureConfig` is enabled.
6303
+ class SchemaJson
6304
+ include Google::Apis::Core::Hashable
6305
+
6306
+ def initialize(**args)
6307
+ update!(**args)
6308
+ end
6309
+
6310
+ # Update properties of this object
6311
+ def update!(**args)
6312
+ end
6313
+ end
6314
+
6215
6315
  # A schema package contains a set of schemas and type definitions.
6216
6316
  class SchemaPackage
6217
6317
  include Google::Apis::Core::Hashable
@@ -6373,29 +6473,6 @@ module Google
6373
6473
  end
6374
6474
  end
6375
6475
 
6376
- # Request to search the resources in the specified FHIR store.
6377
- class SearchResourcesRequest
6378
- include Google::Apis::Core::Hashable
6379
-
6380
- # Optional. The FHIR resource type to search, such as Patient or Observation.
6381
- # For a complete list, see the FHIR Resource Index ([DSTU2](https://hl7.org/fhir/
6382
- # DSTU2/resourcelist.html), [STU3](https://hl7.org/fhir/STU3/resourcelist.html),
6383
- # [R4](https://hl7.org/fhir/R4/resourcelist.html), [R5](https://hl7.org/fhir/R5/
6384
- # resourcelist.html)).
6385
- # Corresponds to the JSON property `resourceType`
6386
- # @return [String]
6387
- attr_accessor :resource_type
6388
-
6389
- def initialize(**args)
6390
- update!(**args)
6391
- end
6392
-
6393
- # Update properties of this object
6394
- def update!(**args)
6395
- @resource_type = args[:resource_type] if args.key?(:resource_type)
6396
- end
6397
- end
6398
-
6399
6476
  # A segment in a structured format.
6400
6477
  class Segment
6401
6478
  include Google::Apis::Core::Hashable
@@ -7127,9 +7204,10 @@ module Google
7127
7204
  # ImplementationGuides. The Cloud Healthcare API does not currently enforce all
7128
7205
  # of the rules in a StructureDefinition. The following rules are supported: -
7129
7206
  # min/max - minValue/maxValue - maxLength - type - fixed[x] - pattern[x] on
7130
- # simple types - slicing, when using "value" as the discriminator type When a
7131
- # URL cannot be resolved (for example, in a type assertion), the server does not
7132
- # return an error.
7207
+ # simple types - slicing, when using "value" as the discriminator type -
7208
+ # FHIRPath constraints (only when `enable_fhirpath_profile_validation` is true)
7209
+ # When a URL cannot be resolved (for example, in a type assertion), the server
7210
+ # does not return an error.
7133
7211
  # Corresponds to the JSON property `enabledImplementationGuides`
7134
7212
  # @return [Array<String>]
7135
7213
  attr_accessor :enabled_implementation_guides
@@ -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.93.0"
19
+ GEM_VERSION = "0.94.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251022"
25
+ REVISION = "20251117"
26
26
  end
27
27
  end
28
28
  end
@@ -610,6 +610,12 @@ module Google
610
610
  include Google::Apis::Core::JsonObjectSupport
611
611
  end
612
612
 
613
+ class GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig
614
+ class Representation < Google::Apis::Core::JsonRepresentation; end
615
+
616
+ include Google::Apis::Core::JsonObjectSupport
617
+ end
618
+
613
619
  class GoogleCloudHealthcareV1beta1DicomGcsDestination
614
620
  class Representation < Google::Apis::Core::JsonRepresentation; end
615
621
 
@@ -1084,43 +1090,49 @@ module Google
1084
1090
  include Google::Apis::Core::JsonObjectSupport
1085
1091
  end
1086
1092
 
1093
+ class SchemaFlattened
1094
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1095
+
1096
+ include Google::Apis::Core::JsonObjectSupport
1097
+ end
1098
+
1087
1099
  class SchemaGroup
1088
1100
  class Representation < Google::Apis::Core::JsonRepresentation; end
1089
1101
 
1090
1102
  include Google::Apis::Core::JsonObjectSupport
1091
1103
  end
1092
1104
 
1093
- class SchemaPackage
1105
+ class SchemaJson
1094
1106
  class Representation < Google::Apis::Core::JsonRepresentation; end
1095
1107
 
1096
1108
  include Google::Apis::Core::JsonObjectSupport
1097
1109
  end
1098
1110
 
1099
- class SchemaSegment
1111
+ class SchemaPackage
1100
1112
  class Representation < Google::Apis::Core::JsonRepresentation; end
1101
1113
 
1102
1114
  include Google::Apis::Core::JsonObjectSupport
1103
1115
  end
1104
1116
 
1105
- class SchematizedData
1117
+ class SchemaSegment
1106
1118
  class Representation < Google::Apis::Core::JsonRepresentation; end
1107
1119
 
1108
1120
  include Google::Apis::Core::JsonObjectSupport
1109
1121
  end
1110
1122
 
1111
- class SearchConfig
1123
+ class SchematizedData
1112
1124
  class Representation < Google::Apis::Core::JsonRepresentation; end
1113
1125
 
1114
1126
  include Google::Apis::Core::JsonObjectSupport
1115
1127
  end
1116
1128
 
1117
- class SearchParameter
1129
+ class SearchConfig
1118
1130
  class Representation < Google::Apis::Core::JsonRepresentation; end
1119
1131
 
1120
1132
  include Google::Apis::Core::JsonObjectSupport
1121
1133
  end
1122
1134
 
1123
- class SearchResourcesRequest
1135
+ class SearchParameter
1124
1136
  class Representation < Google::Apis::Core::JsonRepresentation; end
1125
1137
 
1126
1138
  include Google::Apis::Core::JsonObjectSupport
@@ -2225,12 +2237,25 @@ module Google
2225
2237
  class GoogleCloudHealthcareV1beta1DicomBigQueryDestination
2226
2238
  # @private
2227
2239
  class Representation < Google::Apis::Core::JsonRepresentation
2240
+ property :change_data_capture_config, as: 'changeDataCaptureConfig', class: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig, decorator: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig::Representation
2241
+
2228
2242
  property :force, as: 'force'
2243
+ property :include_source_store, as: 'includeSourceStore'
2244
+ property :schema_flattened, as: 'schemaFlattened', class: Google::Apis::HealthcareV1beta1::SchemaFlattened, decorator: Google::Apis::HealthcareV1beta1::SchemaFlattened::Representation
2245
+
2246
+ property :schema_json, as: 'schemaJson', class: Google::Apis::HealthcareV1beta1::SchemaJson, decorator: Google::Apis::HealthcareV1beta1::SchemaJson::Representation
2247
+
2229
2248
  property :table_uri, as: 'tableUri'
2230
2249
  property :write_disposition, as: 'writeDisposition'
2231
2250
  end
2232
2251
  end
2233
2252
 
2253
+ class GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig
2254
+ # @private
2255
+ class Representation < Google::Apis::Core::JsonRepresentation
2256
+ end
2257
+ end
2258
+
2234
2259
  class GoogleCloudHealthcareV1beta1DicomGcsDestination
2235
2260
  # @private
2236
2261
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2927,6 +2952,12 @@ module Google
2927
2952
  end
2928
2953
  end
2929
2954
 
2955
+ class SchemaFlattened
2956
+ # @private
2957
+ class Representation < Google::Apis::Core::JsonRepresentation
2958
+ end
2959
+ end
2960
+
2930
2961
  class SchemaGroup
2931
2962
  # @private
2932
2963
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2939,6 +2970,12 @@ module Google
2939
2970
  end
2940
2971
  end
2941
2972
 
2973
+ class SchemaJson
2974
+ # @private
2975
+ class Representation < Google::Apis::Core::JsonRepresentation
2976
+ end
2977
+ end
2978
+
2942
2979
  class SchemaPackage
2943
2980
  # @private
2944
2981
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2985,13 +3022,6 @@ module Google
2985
3022
  end
2986
3023
  end
2987
3024
 
2988
- class SearchResourcesRequest
2989
- # @private
2990
- class Representation < Google::Apis::Core::JsonRepresentation
2991
- property :resource_type, as: 'resourceType'
2992
- end
2993
- end
2994
-
2995
3025
  class Segment
2996
3026
  # @private
2997
3027
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5535,7 +5535,7 @@ module Google
5535
5535
 
5536
5536
  # Bulk exports all resources from the FHIR store to the specified destination.
5537
5537
  # Implements the FHIR implementation guide [system level $export](https://build.
5538
- # fhir.org/ig/HL7/bulk-data/export.html#endpoint---system-level-export. The
5538
+ # fhir.org/ig/HL7/bulk-data/export.html#endpoint---system-level-export). The
5539
5539
  # following headers must be set in the request: * `Accept`: specifies the format
5540
5540
  # of the `OperationOutcome` response. Only `application/fhir+json` is supported.
5541
5541
  # * `Prefer`: specifies whether the response is immediate or asynchronous. Must
@@ -6214,7 +6214,13 @@ module Google
6214
6214
  # //cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
6215
6215
  # @param [String] parent
6216
6216
  # Required. Name of the FHIR store to retrieve resources from.
6217
- # @param [Google::Apis::HealthcareV1beta1::SearchResourcesRequest] search_resources_request_object
6217
+ # @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
6218
+ # @param [String] resource_type
6219
+ # Optional. The FHIR resource type to search, such as Patient or Observation.
6220
+ # For a complete list, see the FHIR Resource Index ([DSTU2](https://hl7.org/fhir/
6221
+ # DSTU2/resourcelist.html), [STU3](https://hl7.org/fhir/STU3/resourcelist.html),
6222
+ # [R4](https://hl7.org/fhir/R4/resourcelist.html), [R5](https://hl7.org/fhir/R5/
6223
+ # resourcelist.html)).
6218
6224
  # @param [String] fields
6219
6225
  # Selector specifying which fields to include in a partial response.
6220
6226
  # @param [String] quota_user
@@ -6232,13 +6238,14 @@ module Google
6232
6238
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6233
6239
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6234
6240
  # @raise [Google::Apis::AuthorizationError] Authorization is required
6235
- def search_fhir_resources(parent, search_resources_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
6241
+ def search_fhir_resources(parent, http_body_object = nil, resource_type: nil, fields: nil, quota_user: nil, options: nil, &block)
6236
6242
  command = make_simple_command(:post, 'v1beta1/{+parent}/fhir/_search', options)
6237
- command.request_representation = Google::Apis::HealthcareV1beta1::SearchResourcesRequest::Representation
6238
- command.request_object = search_resources_request_object
6243
+ command.request_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
6244
+ command.request_object = http_body_object
6239
6245
  command.response_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
6240
6246
  command.response_class = Google::Apis::HealthcareV1beta1::HttpBody
6241
6247
  command.params['parent'] = parent unless parent.nil?
6248
+ command.query['resourceType'] = resource_type unless resource_type.nil?
6242
6249
  command.query['fields'] = fields unless fields.nil?
6243
6250
  command.query['quotaUser'] = quota_user unless quota_user.nil?
6244
6251
  execute_or_queue_command(command, &block)
@@ -6312,7 +6319,7 @@ module Google
6312
6319
  # DSTU2/resourcelist.html), [STU3](https://hl7.org/fhir/STU3/resourcelist.html),
6313
6320
  # [R4](https://hl7.org/fhir/R4/resourcelist.html), [R5](https://hl7.org/fhir/R5/
6314
6321
  # resourcelist.html)).
6315
- # @param [Google::Apis::HealthcareV1beta1::SearchResourcesRequest] search_resources_request_object
6322
+ # @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
6316
6323
  # @param [String] fields
6317
6324
  # Selector specifying which fields to include in a partial response.
6318
6325
  # @param [String] quota_user
@@ -6330,10 +6337,10 @@ module Google
6330
6337
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6331
6338
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6332
6339
  # @raise [Google::Apis::AuthorizationError] Authorization is required
6333
- def search_project_location_dataset_fhir_store_fhir_type(parent, resource_type, search_resources_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
6340
+ def search_project_location_dataset_fhir_store_fhir_type(parent, resource_type, http_body_object = nil, fields: nil, quota_user: nil, options: nil, &block)
6334
6341
  command = make_simple_command(:post, 'v1beta1/{+parent}/fhir/{resourceType}/_search', options)
6335
- command.request_representation = Google::Apis::HealthcareV1beta1::SearchResourcesRequest::Representation
6336
- command.request_object = search_resources_request_object
6342
+ command.request_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
6343
+ command.request_object = http_body_object
6337
6344
  command.response_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
6338
6345
  command.response_class = Google::Apis::HealthcareV1beta1::HttpBody
6339
6346
  command.params['parent'] = parent unless parent.nil?
@@ -7408,11 +7415,12 @@ module Google
7408
7415
  # The standard list page token.
7409
7416
  # @param [Boolean] return_partial_success
7410
7417
  # When set to `true`, operations that are reachable are returned as normal, and
7411
- # those that are unreachable are returned in the [ListOperationsResponse.
7412
- # unreachable] field. This can only be `true` when reading across collections e.
7413
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
7414
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
7415
- # explicitly documented otherwise in service or product specific documentation.
7418
+ # those that are unreachable are returned in the ListOperationsResponse.
7419
+ # unreachable field. This can only be `true` when reading across collections.
7420
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
7421
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
7422
+ # if set unless explicitly documented otherwise in service or product specific
7423
+ # documentation.
7416
7424
  # @param [String] fields
7417
7425
  # Selector specifying which fields to include in a partial response.
7418
7426
  # @param [String] quota_user
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-healthcare_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.93.0
4
+ version: 0.94.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.93.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.94.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: