google-apis-healthcare_v1 0.63.0 → 0.65.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 435f2ca95152367429c8d68de39b113f87bfddeef538ac03041efadf901e0d79
|
4
|
+
data.tar.gz: 1eb874133c2cd41fcf871da59fb8d5dad7143509aaa9252bbd3b3e3f8a09ad77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38aeb23b833ab57dd7fa63890e26a84a6a0a359c30ec95bea93b2e770500a062b6208cca40aff843b5525c7752a9732301da4106c0cbc093ca3d8592d63c3623
|
7
|
+
data.tar.gz: 77c9477131e9bdb8d523503843b9083714135ebf20a69d9fd50a0ee0cfc84c6d32bdaf9c9b743fbdda625548b26367dad4ed933a6462497825276a8a08e194ea
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-healthcare_v1
|
2
2
|
|
3
|
+
### v0.65.0 (2024-09-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240819
|
6
|
+
|
7
|
+
### v0.64.0 (2024-08-04)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240731
|
10
|
+
* Regenerated using generator version 0.15.1
|
11
|
+
|
3
12
|
### v0.63.0 (2024-07-25)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240718
|
@@ -421,6 +421,59 @@ module Google
|
|
421
421
|
end
|
422
422
|
end
|
423
423
|
|
424
|
+
# BlobStorageInfo contains details about the data stored in Blob Storage for the
|
425
|
+
# referenced resource. Note: Storage class is only valid for DICOM and hence
|
426
|
+
# will only be populated for DICOM resources.
|
427
|
+
class BlobStorageInfo
|
428
|
+
include Google::Apis::Core::Hashable
|
429
|
+
|
430
|
+
# Size in bytes of data stored in Blob Storage.
|
431
|
+
# Corresponds to the JSON property `sizeBytes`
|
432
|
+
# @return [Fixnum]
|
433
|
+
attr_accessor :size_bytes
|
434
|
+
|
435
|
+
# The storage class in which the Blob data is stored.
|
436
|
+
# Corresponds to the JSON property `storageClass`
|
437
|
+
# @return [String]
|
438
|
+
attr_accessor :storage_class
|
439
|
+
|
440
|
+
# The time at which the storage class was updated. This is used to compute early
|
441
|
+
# deletion fees of the resource.
|
442
|
+
# Corresponds to the JSON property `storageClassUpdateTime`
|
443
|
+
# @return [String]
|
444
|
+
attr_accessor :storage_class_update_time
|
445
|
+
|
446
|
+
def initialize(**args)
|
447
|
+
update!(**args)
|
448
|
+
end
|
449
|
+
|
450
|
+
# Update properties of this object
|
451
|
+
def update!(**args)
|
452
|
+
@size_bytes = args[:size_bytes] if args.key?(:size_bytes)
|
453
|
+
@storage_class = args[:storage_class] if args.key?(:storage_class)
|
454
|
+
@storage_class_update_time = args[:storage_class_update_time] if args.key?(:storage_class_update_time)
|
455
|
+
end
|
456
|
+
end
|
457
|
+
|
458
|
+
# Settings for data stored in Blob storage.
|
459
|
+
class BlobStorageSettings
|
460
|
+
include Google::Apis::Core::Hashable
|
461
|
+
|
462
|
+
# The Storage class in which the Blob data is stored.
|
463
|
+
# Corresponds to the JSON property `blobStorageClass`
|
464
|
+
# @return [String]
|
465
|
+
attr_accessor :blob_storage_class
|
466
|
+
|
467
|
+
def initialize(**args)
|
468
|
+
update!(**args)
|
469
|
+
end
|
470
|
+
|
471
|
+
# Update properties of this object
|
472
|
+
def update!(**args)
|
473
|
+
@blob_storage_class = args[:blob_storage_class] if args.key?(:blob_storage_class)
|
474
|
+
end
|
475
|
+
end
|
476
|
+
|
424
477
|
# The request message for Operations.CancelOperation.
|
425
478
|
class CancelOperationRequest
|
426
479
|
include Google::Apis::Core::Hashable
|
@@ -3013,6 +3066,11 @@ module Google
|
|
3013
3066
|
class ImportDicomDataRequest
|
3014
3067
|
include Google::Apis::Core::Hashable
|
3015
3068
|
|
3069
|
+
# Settings for data stored in Blob storage.
|
3070
|
+
# Corresponds to the JSON property `blobStorageSettings`
|
3071
|
+
# @return [Google::Apis::HealthcareV1::BlobStorageSettings]
|
3072
|
+
attr_accessor :blob_storage_settings
|
3073
|
+
|
3016
3074
|
# Specifies the configuration for importing data from Cloud Storage.
|
3017
3075
|
# Corresponds to the JSON property `gcsSource`
|
3018
3076
|
# @return [Google::Apis::HealthcareV1::GoogleCloudHealthcareV1DicomGcsSource]
|
@@ -3024,6 +3082,7 @@ module Google
|
|
3024
3082
|
|
3025
3083
|
# Update properties of this object
|
3026
3084
|
def update!(**args)
|
3085
|
+
@blob_storage_settings = args[:blob_storage_settings] if args.key?(:blob_storage_settings)
|
3027
3086
|
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
3028
3087
|
end
|
3029
3088
|
end
|
@@ -4454,6 +4513,106 @@ module Google
|
|
4454
4513
|
end
|
4455
4514
|
end
|
4456
4515
|
|
4516
|
+
# Filtering fields for an HL7v2 rollback. Currently only supports a list of
|
4517
|
+
# operation ids to roll back.
|
4518
|
+
class RollbackHl7MessagesFilteringFields
|
4519
|
+
include Google::Apis::Core::Hashable
|
4520
|
+
|
4521
|
+
# Optional. A list of operation IDs to roll back.
|
4522
|
+
# Corresponds to the JSON property `operationIds`
|
4523
|
+
# @return [Array<Fixnum>]
|
4524
|
+
attr_accessor :operation_ids
|
4525
|
+
|
4526
|
+
def initialize(**args)
|
4527
|
+
update!(**args)
|
4528
|
+
end
|
4529
|
+
|
4530
|
+
# Update properties of this object
|
4531
|
+
def update!(**args)
|
4532
|
+
@operation_ids = args[:operation_ids] if args.key?(:operation_ids)
|
4533
|
+
end
|
4534
|
+
end
|
4535
|
+
|
4536
|
+
# Point in time recovery rollback request.
|
4537
|
+
class RollbackHl7V2MessagesRequest
|
4538
|
+
include Google::Apis::Core::Hashable
|
4539
|
+
|
4540
|
+
# Optional. CREATE/UPDATE/DELETE/ALL for reverting all txns of a certain type.
|
4541
|
+
# Corresponds to the JSON property `changeType`
|
4542
|
+
# @return [String]
|
4543
|
+
attr_accessor :change_type
|
4544
|
+
|
4545
|
+
# Optional. Specifies whether to exclude earlier rollbacks.
|
4546
|
+
# Corresponds to the JSON property `excludeRollbacks`
|
4547
|
+
# @return [Boolean]
|
4548
|
+
attr_accessor :exclude_rollbacks
|
4549
|
+
alias_method :exclude_rollbacks?, :exclude_rollbacks
|
4550
|
+
|
4551
|
+
# Filtering fields for an HL7v2 rollback. Currently only supports a list of
|
4552
|
+
# operation ids to roll back.
|
4553
|
+
# Corresponds to the JSON property `filteringFields`
|
4554
|
+
# @return [Google::Apis::HealthcareV1::RollbackHl7MessagesFilteringFields]
|
4555
|
+
attr_accessor :filtering_fields
|
4556
|
+
|
4557
|
+
# Optional. When enabled, changes will be reverted without explicit confirmation.
|
4558
|
+
# Corresponds to the JSON property `force`
|
4559
|
+
# @return [Boolean]
|
4560
|
+
attr_accessor :force
|
4561
|
+
alias_method :force?, :force
|
4562
|
+
|
4563
|
+
# Optional. Cloud storage object containing list of `resourceId` lines,
|
4564
|
+
# identifying resources to be reverted
|
4565
|
+
# Corresponds to the JSON property `inputGcsObject`
|
4566
|
+
# @return [String]
|
4567
|
+
attr_accessor :input_gcs_object
|
4568
|
+
|
4569
|
+
# Required. Bucket to deposit result
|
4570
|
+
# Corresponds to the JSON property `resultGcsBucket`
|
4571
|
+
# @return [String]
|
4572
|
+
attr_accessor :result_gcs_bucket
|
4573
|
+
|
4574
|
+
# Required. Times point to rollback to.
|
4575
|
+
# Corresponds to the JSON property `rollbackTime`
|
4576
|
+
# @return [String]
|
4577
|
+
attr_accessor :rollback_time
|
4578
|
+
|
4579
|
+
def initialize(**args)
|
4580
|
+
update!(**args)
|
4581
|
+
end
|
4582
|
+
|
4583
|
+
# Update properties of this object
|
4584
|
+
def update!(**args)
|
4585
|
+
@change_type = args[:change_type] if args.key?(:change_type)
|
4586
|
+
@exclude_rollbacks = args[:exclude_rollbacks] if args.key?(:exclude_rollbacks)
|
4587
|
+
@filtering_fields = args[:filtering_fields] if args.key?(:filtering_fields)
|
4588
|
+
@force = args[:force] if args.key?(:force)
|
4589
|
+
@input_gcs_object = args[:input_gcs_object] if args.key?(:input_gcs_object)
|
4590
|
+
@result_gcs_bucket = args[:result_gcs_bucket] if args.key?(:result_gcs_bucket)
|
4591
|
+
@rollback_time = args[:rollback_time] if args.key?(:rollback_time)
|
4592
|
+
end
|
4593
|
+
end
|
4594
|
+
|
4595
|
+
# Final response of rollback HL7v2 messages request.
|
4596
|
+
class RollbackHl7V2MessagesResponse
|
4597
|
+
include Google::Apis::Core::Hashable
|
4598
|
+
|
4599
|
+
# The name of the HL7v2 store to rollback, in the format of "projects/`
|
4600
|
+
# project_id`/locations/`location_id`/datasets/`dataset_id` /hl7v2Stores/`
|
4601
|
+
# hl7v2_store_id`".
|
4602
|
+
# Corresponds to the JSON property `hl7v2Store`
|
4603
|
+
# @return [String]
|
4604
|
+
attr_accessor :hl7v2_store
|
4605
|
+
|
4606
|
+
def initialize(**args)
|
4607
|
+
update!(**args)
|
4608
|
+
end
|
4609
|
+
|
4610
|
+
# Update properties of this object
|
4611
|
+
def update!(**args)
|
4612
|
+
@hl7v2_store = args[:hl7v2_store] if args.key?(:hl7v2_store)
|
4613
|
+
end
|
4614
|
+
end
|
4615
|
+
|
4457
4616
|
# Configuration for the FHIR BigQuery schema. Determines how the server
|
4458
4617
|
# generates the schema.
|
4459
4618
|
class SchemaConfig
|
@@ -4749,6 +4908,45 @@ module Google
|
|
4749
4908
|
end
|
4750
4909
|
end
|
4751
4910
|
|
4911
|
+
# Request message for `SetBlobStorageSettings` method.
|
4912
|
+
class SetBlobStorageSettingsRequest
|
4913
|
+
include Google::Apis::Core::Hashable
|
4914
|
+
|
4915
|
+
# Settings for data stored in Blob storage.
|
4916
|
+
# Corresponds to the JSON property `blobStorageSettings`
|
4917
|
+
# @return [Google::Apis::HealthcareV1::BlobStorageSettings]
|
4918
|
+
attr_accessor :blob_storage_settings
|
4919
|
+
|
4920
|
+
# Specifies the filter configuration for DICOM resources.
|
4921
|
+
# Corresponds to the JSON property `filterConfig`
|
4922
|
+
# @return [Google::Apis::HealthcareV1::DicomFilterConfig]
|
4923
|
+
attr_accessor :filter_config
|
4924
|
+
|
4925
|
+
def initialize(**args)
|
4926
|
+
update!(**args)
|
4927
|
+
end
|
4928
|
+
|
4929
|
+
# Update properties of this object
|
4930
|
+
def update!(**args)
|
4931
|
+
@blob_storage_settings = args[:blob_storage_settings] if args.key?(:blob_storage_settings)
|
4932
|
+
@filter_config = args[:filter_config] if args.key?(:filter_config)
|
4933
|
+
end
|
4934
|
+
end
|
4935
|
+
|
4936
|
+
# Returns additional info in regards to a completed set blob storage settings
|
4937
|
+
# API.
|
4938
|
+
class SetBlobStorageSettingsResponse
|
4939
|
+
include Google::Apis::Core::Hashable
|
4940
|
+
|
4941
|
+
def initialize(**args)
|
4942
|
+
update!(**args)
|
4943
|
+
end
|
4944
|
+
|
4945
|
+
# Update properties of this object
|
4946
|
+
def update!(**args)
|
4947
|
+
end
|
4948
|
+
end
|
4949
|
+
|
4752
4950
|
# Request message for `SetIamPolicy` method.
|
4753
4951
|
class SetIamPolicyRequest
|
4754
4952
|
include Google::Apis::Core::Hashable
|
@@ -4879,6 +5077,42 @@ module Google
|
|
4879
5077
|
end
|
4880
5078
|
end
|
4881
5079
|
|
5080
|
+
# StorageInfo encapsulates all the storage info of a resource.
|
5081
|
+
class StorageInfo
|
5082
|
+
include Google::Apis::Core::Hashable
|
5083
|
+
|
5084
|
+
# BlobStorageInfo contains details about the data stored in Blob Storage for the
|
5085
|
+
# referenced resource. Note: Storage class is only valid for DICOM and hence
|
5086
|
+
# will only be populated for DICOM resources.
|
5087
|
+
# Corresponds to the JSON property `blobStorageInfo`
|
5088
|
+
# @return [Google::Apis::HealthcareV1::BlobStorageInfo]
|
5089
|
+
attr_accessor :blob_storage_info
|
5090
|
+
|
5091
|
+
# The resource whose storage info is returned. For example: `projects/`projectID`
|
5092
|
+
# /locations/`locationID`/datasets/`datasetID`/dicomStores/`dicomStoreID`/
|
5093
|
+
# dicomWeb/studies/`studyUID`/series/`seriesUID`/instances/`instanceUID``
|
5094
|
+
# Corresponds to the JSON property `referencedResource`
|
5095
|
+
# @return [String]
|
5096
|
+
attr_accessor :referenced_resource
|
5097
|
+
|
5098
|
+
# StructuredStorageInfo contains details about the data stored in Structured
|
5099
|
+
# Storage for the referenced resource.
|
5100
|
+
# Corresponds to the JSON property `structuredStorageInfo`
|
5101
|
+
# @return [Google::Apis::HealthcareV1::StructuredStorageInfo]
|
5102
|
+
attr_accessor :structured_storage_info
|
5103
|
+
|
5104
|
+
def initialize(**args)
|
5105
|
+
update!(**args)
|
5106
|
+
end
|
5107
|
+
|
5108
|
+
# Update properties of this object
|
5109
|
+
def update!(**args)
|
5110
|
+
@blob_storage_info = args[:blob_storage_info] if args.key?(:blob_storage_info)
|
5111
|
+
@referenced_resource = args[:referenced_resource] if args.key?(:referenced_resource)
|
5112
|
+
@structured_storage_info = args[:structured_storage_info] if args.key?(:structured_storage_info)
|
5113
|
+
end
|
5114
|
+
end
|
5115
|
+
|
4882
5116
|
# Contains configuration for streaming FHIR export.
|
4883
5117
|
class StreamConfig
|
4884
5118
|
include Google::Apis::Core::Hashable
|
@@ -4913,6 +5147,26 @@ module Google
|
|
4913
5147
|
end
|
4914
5148
|
end
|
4915
5149
|
|
5150
|
+
# StructuredStorageInfo contains details about the data stored in Structured
|
5151
|
+
# Storage for the referenced resource.
|
5152
|
+
class StructuredStorageInfo
|
5153
|
+
include Google::Apis::Core::Hashable
|
5154
|
+
|
5155
|
+
# Size in bytes of data stored in structured storage.
|
5156
|
+
# Corresponds to the JSON property `sizeBytes`
|
5157
|
+
# @return [Fixnum]
|
5158
|
+
attr_accessor :size_bytes
|
5159
|
+
|
5160
|
+
def initialize(**args)
|
5161
|
+
update!(**args)
|
5162
|
+
end
|
5163
|
+
|
5164
|
+
# Update properties of this object
|
5165
|
+
def update!(**args)
|
5166
|
+
@size_bytes = args[:size_bytes] if args.key?(:size_bytes)
|
5167
|
+
end
|
5168
|
+
end
|
5169
|
+
|
4916
5170
|
# StudyMetrics contains metrics describing a DICOM study.
|
4917
5171
|
class StudyMetrics
|
4918
5172
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module HealthcareV1
|
18
18
|
# Version of the google-apis-healthcare_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.65.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240819"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -82,6 +82,18 @@ module Google
|
|
82
82
|
include Google::Apis::Core::JsonObjectSupport
|
83
83
|
end
|
84
84
|
|
85
|
+
class BlobStorageInfo
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
+
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
89
|
+
end
|
90
|
+
|
91
|
+
class BlobStorageSettings
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
85
97
|
class CancelOperationRequest
|
86
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
99
|
|
@@ -772,6 +784,24 @@ module Google
|
|
772
784
|
include Google::Apis::Core::JsonObjectSupport
|
773
785
|
end
|
774
786
|
|
787
|
+
class RollbackHl7MessagesFilteringFields
|
788
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
789
|
+
|
790
|
+
include Google::Apis::Core::JsonObjectSupport
|
791
|
+
end
|
792
|
+
|
793
|
+
class RollbackHl7V2MessagesRequest
|
794
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
795
|
+
|
796
|
+
include Google::Apis::Core::JsonObjectSupport
|
797
|
+
end
|
798
|
+
|
799
|
+
class RollbackHl7V2MessagesResponse
|
800
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
801
|
+
|
802
|
+
include Google::Apis::Core::JsonObjectSupport
|
803
|
+
end
|
804
|
+
|
775
805
|
class SchemaConfig
|
776
806
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
777
807
|
|
@@ -820,6 +850,18 @@ module Google
|
|
820
850
|
include Google::Apis::Core::JsonObjectSupport
|
821
851
|
end
|
822
852
|
|
853
|
+
class SetBlobStorageSettingsRequest
|
854
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
855
|
+
|
856
|
+
include Google::Apis::Core::JsonObjectSupport
|
857
|
+
end
|
858
|
+
|
859
|
+
class SetBlobStorageSettingsResponse
|
860
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
861
|
+
|
862
|
+
include Google::Apis::Core::JsonObjectSupport
|
863
|
+
end
|
864
|
+
|
823
865
|
class SetIamPolicyRequest
|
824
866
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
825
867
|
|
@@ -838,12 +880,24 @@ module Google
|
|
838
880
|
include Google::Apis::Core::JsonObjectSupport
|
839
881
|
end
|
840
882
|
|
883
|
+
class StorageInfo
|
884
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
885
|
+
|
886
|
+
include Google::Apis::Core::JsonObjectSupport
|
887
|
+
end
|
888
|
+
|
841
889
|
class StreamConfig
|
842
890
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
843
891
|
|
844
892
|
include Google::Apis::Core::JsonObjectSupport
|
845
893
|
end
|
846
894
|
|
895
|
+
class StructuredStorageInfo
|
896
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
897
|
+
|
898
|
+
include Google::Apis::Core::JsonObjectSupport
|
899
|
+
end
|
900
|
+
|
847
901
|
class StudyMetrics
|
848
902
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
849
903
|
|
@@ -1000,6 +1054,22 @@ module Google
|
|
1000
1054
|
end
|
1001
1055
|
end
|
1002
1056
|
|
1057
|
+
class BlobStorageInfo
|
1058
|
+
# @private
|
1059
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1060
|
+
property :size_bytes, :numeric_string => true, as: 'sizeBytes'
|
1061
|
+
property :storage_class, as: 'storageClass'
|
1062
|
+
property :storage_class_update_time, as: 'storageClassUpdateTime'
|
1063
|
+
end
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
class BlobStorageSettings
|
1067
|
+
# @private
|
1068
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1069
|
+
property :blob_storage_class, as: 'blobStorageClass'
|
1070
|
+
end
|
1071
|
+
end
|
1072
|
+
|
1003
1073
|
class CancelOperationRequest
|
1004
1074
|
# @private
|
1005
1075
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1663,6 +1733,8 @@ module Google
|
|
1663
1733
|
class ImportDicomDataRequest
|
1664
1734
|
# @private
|
1665
1735
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1736
|
+
property :blob_storage_settings, as: 'blobStorageSettings', class: Google::Apis::HealthcareV1::BlobStorageSettings, decorator: Google::Apis::HealthcareV1::BlobStorageSettings::Representation
|
1737
|
+
|
1666
1738
|
property :gcs_source, as: 'gcsSource', class: Google::Apis::HealthcareV1::GoogleCloudHealthcareV1DicomGcsSource, decorator: Google::Apis::HealthcareV1::GoogleCloudHealthcareV1DicomGcsSource::Representation
|
1667
1739
|
|
1668
1740
|
end
|
@@ -2077,6 +2149,34 @@ module Google
|
|
2077
2149
|
end
|
2078
2150
|
end
|
2079
2151
|
|
2152
|
+
class RollbackHl7MessagesFilteringFields
|
2153
|
+
# @private
|
2154
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2155
|
+
collection :operation_ids, as: 'operationIds'
|
2156
|
+
end
|
2157
|
+
end
|
2158
|
+
|
2159
|
+
class RollbackHl7V2MessagesRequest
|
2160
|
+
# @private
|
2161
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2162
|
+
property :change_type, as: 'changeType'
|
2163
|
+
property :exclude_rollbacks, as: 'excludeRollbacks'
|
2164
|
+
property :filtering_fields, as: 'filteringFields', class: Google::Apis::HealthcareV1::RollbackHl7MessagesFilteringFields, decorator: Google::Apis::HealthcareV1::RollbackHl7MessagesFilteringFields::Representation
|
2165
|
+
|
2166
|
+
property :force, as: 'force'
|
2167
|
+
property :input_gcs_object, as: 'inputGcsObject'
|
2168
|
+
property :result_gcs_bucket, as: 'resultGcsBucket'
|
2169
|
+
property :rollback_time, as: 'rollbackTime'
|
2170
|
+
end
|
2171
|
+
end
|
2172
|
+
|
2173
|
+
class RollbackHl7V2MessagesResponse
|
2174
|
+
# @private
|
2175
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2176
|
+
property :hl7v2_store, as: 'hl7v2Store'
|
2177
|
+
end
|
2178
|
+
end
|
2179
|
+
|
2080
2180
|
class SchemaConfig
|
2081
2181
|
# @private
|
2082
2182
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2155,6 +2255,22 @@ module Google
|
|
2155
2255
|
end
|
2156
2256
|
end
|
2157
2257
|
|
2258
|
+
class SetBlobStorageSettingsRequest
|
2259
|
+
# @private
|
2260
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2261
|
+
property :blob_storage_settings, as: 'blobStorageSettings', class: Google::Apis::HealthcareV1::BlobStorageSettings, decorator: Google::Apis::HealthcareV1::BlobStorageSettings::Representation
|
2262
|
+
|
2263
|
+
property :filter_config, as: 'filterConfig', class: Google::Apis::HealthcareV1::DicomFilterConfig, decorator: Google::Apis::HealthcareV1::DicomFilterConfig::Representation
|
2264
|
+
|
2265
|
+
end
|
2266
|
+
end
|
2267
|
+
|
2268
|
+
class SetBlobStorageSettingsResponse
|
2269
|
+
# @private
|
2270
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2271
|
+
end
|
2272
|
+
end
|
2273
|
+
|
2158
2274
|
class SetIamPolicyRequest
|
2159
2275
|
# @private
|
2160
2276
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2184,6 +2300,17 @@ module Google
|
|
2184
2300
|
end
|
2185
2301
|
end
|
2186
2302
|
|
2303
|
+
class StorageInfo
|
2304
|
+
# @private
|
2305
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2306
|
+
property :blob_storage_info, as: 'blobStorageInfo', class: Google::Apis::HealthcareV1::BlobStorageInfo, decorator: Google::Apis::HealthcareV1::BlobStorageInfo::Representation
|
2307
|
+
|
2308
|
+
property :referenced_resource, as: 'referencedResource'
|
2309
|
+
property :structured_storage_info, as: 'structuredStorageInfo', class: Google::Apis::HealthcareV1::StructuredStorageInfo, decorator: Google::Apis::HealthcareV1::StructuredStorageInfo::Representation
|
2310
|
+
|
2311
|
+
end
|
2312
|
+
end
|
2313
|
+
|
2187
2314
|
class StreamConfig
|
2188
2315
|
# @private
|
2189
2316
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2195,6 +2322,13 @@ module Google
|
|
2195
2322
|
end
|
2196
2323
|
end
|
2197
2324
|
|
2325
|
+
class StructuredStorageInfo
|
2326
|
+
# @private
|
2327
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2328
|
+
property :size_bytes, :numeric_string => true, as: 'sizeBytes'
|
2329
|
+
end
|
2330
|
+
end
|
2331
|
+
|
2198
2332
|
class StudyMetrics
|
2199
2333
|
# @private
|
2200
2334
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2549,6 +2549,49 @@ module Google
|
|
2549
2549
|
execute_or_queue_command(command, &block)
|
2550
2550
|
end
|
2551
2551
|
|
2552
|
+
# SetBlobStorageSettings sets the blob storage settings of the specified
|
2553
|
+
# resources.
|
2554
|
+
# @param [String] resource
|
2555
|
+
# Required. The path of the resource to update the blob storage settings in the
|
2556
|
+
# format of `projects/`projectID`/locations/`locationID`/datasets/`datasetID`/
|
2557
|
+
# dicomStores/`dicomStoreID`/dicomWeb/studies/`studyUID``, `projects/`projectID`/
|
2558
|
+
# locations/`locationID`/datasets/`datasetID`/dicomStores/`dicomStoreID`/
|
2559
|
+
# dicomWeb/studies/`studyUID`/series/`seriesUID`/`, or `projects/`projectID`/
|
2560
|
+
# locations/`locationID`/datasets/`datasetID`/dicomStores/`dicomStoreID`/
|
2561
|
+
# dicomWeb/studies/`studyUID`/series/`seriesUID`/instances/`instanceUID``. If `
|
2562
|
+
# filter_config` is specified, set the value of `resource` to the resource name
|
2563
|
+
# of a DICOM store in the format `projects/`projectID`/locations/`locationID`/
|
2564
|
+
# datasets/`datasetID`/dicomStores/`dicomStoreID``.
|
2565
|
+
# @param [Google::Apis::HealthcareV1::SetBlobStorageSettingsRequest] set_blob_storage_settings_request_object
|
2566
|
+
# @param [String] fields
|
2567
|
+
# Selector specifying which fields to include in a partial response.
|
2568
|
+
# @param [String] quota_user
|
2569
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2570
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2571
|
+
# @param [Google::Apis::RequestOptions] options
|
2572
|
+
# Request-specific options
|
2573
|
+
#
|
2574
|
+
# @yield [result, err] Result & error if block supplied
|
2575
|
+
# @yieldparam result [Google::Apis::HealthcareV1::Operation] parsed result object
|
2576
|
+
# @yieldparam err [StandardError] error object if request failed
|
2577
|
+
#
|
2578
|
+
# @return [Google::Apis::HealthcareV1::Operation]
|
2579
|
+
#
|
2580
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2581
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2582
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2583
|
+
def set_dicom_store_blob_storage_settings(resource, set_blob_storage_settings_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
2584
|
+
command = make_simple_command(:post, 'v1/{+resource}:setBlobStorageSettings', options)
|
2585
|
+
command.request_representation = Google::Apis::HealthcareV1::SetBlobStorageSettingsRequest::Representation
|
2586
|
+
command.request_object = set_blob_storage_settings_request_object
|
2587
|
+
command.response_representation = Google::Apis::HealthcareV1::Operation::Representation
|
2588
|
+
command.response_class = Google::Apis::HealthcareV1::Operation
|
2589
|
+
command.params['resource'] = resource unless resource.nil?
|
2590
|
+
command.query['fields'] = fields unless fields.nil?
|
2591
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2592
|
+
execute_or_queue_command(command, &block)
|
2593
|
+
end
|
2594
|
+
|
2552
2595
|
# Sets the access control policy on the specified resource. Replaces any
|
2553
2596
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
2554
2597
|
# PERMISSION_DENIED` errors.
|
@@ -2703,6 +2746,49 @@ module Google
|
|
2703
2746
|
execute_or_queue_command(command, &block)
|
2704
2747
|
end
|
2705
2748
|
|
2749
|
+
# SetBlobStorageSettings sets the blob storage settings of the specified
|
2750
|
+
# resources.
|
2751
|
+
# @param [String] resource
|
2752
|
+
# Required. The path of the resource to update the blob storage settings in the
|
2753
|
+
# format of `projects/`projectID`/locations/`locationID`/datasets/`datasetID`/
|
2754
|
+
# dicomStores/`dicomStoreID`/dicomWeb/studies/`studyUID``, `projects/`projectID`/
|
2755
|
+
# locations/`locationID`/datasets/`datasetID`/dicomStores/`dicomStoreID`/
|
2756
|
+
# dicomWeb/studies/`studyUID`/series/`seriesUID`/`, or `projects/`projectID`/
|
2757
|
+
# locations/`locationID`/datasets/`datasetID`/dicomStores/`dicomStoreID`/
|
2758
|
+
# dicomWeb/studies/`studyUID`/series/`seriesUID`/instances/`instanceUID``. If `
|
2759
|
+
# filter_config` is specified, set the value of `resource` to the resource name
|
2760
|
+
# of a DICOM store in the format `projects/`projectID`/locations/`locationID`/
|
2761
|
+
# datasets/`datasetID`/dicomStores/`dicomStoreID``.
|
2762
|
+
# @param [Google::Apis::HealthcareV1::SetBlobStorageSettingsRequest] set_blob_storage_settings_request_object
|
2763
|
+
# @param [String] fields
|
2764
|
+
# Selector specifying which fields to include in a partial response.
|
2765
|
+
# @param [String] quota_user
|
2766
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2767
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2768
|
+
# @param [Google::Apis::RequestOptions] options
|
2769
|
+
# Request-specific options
|
2770
|
+
#
|
2771
|
+
# @yield [result, err] Result & error if block supplied
|
2772
|
+
# @yieldparam result [Google::Apis::HealthcareV1::Operation] parsed result object
|
2773
|
+
# @yieldparam err [StandardError] error object if request failed
|
2774
|
+
#
|
2775
|
+
# @return [Google::Apis::HealthcareV1::Operation]
|
2776
|
+
#
|
2777
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2778
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2779
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2780
|
+
def set_study_blob_storage_settings(resource, set_blob_storage_settings_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
2781
|
+
command = make_simple_command(:post, 'v1/{+resource}:setBlobStorageSettings', options)
|
2782
|
+
command.request_representation = Google::Apis::HealthcareV1::SetBlobStorageSettingsRequest::Representation
|
2783
|
+
command.request_object = set_blob_storage_settings_request_object
|
2784
|
+
command.response_representation = Google::Apis::HealthcareV1::Operation::Representation
|
2785
|
+
command.response_class = Google::Apis::HealthcareV1::Operation
|
2786
|
+
command.params['resource'] = resource unless resource.nil?
|
2787
|
+
command.query['fields'] = fields unless fields.nil?
|
2788
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2789
|
+
execute_or_queue_command(command, &block)
|
2790
|
+
end
|
2791
|
+
|
2706
2792
|
# GetSeriesMetrics returns metrics for a series.
|
2707
2793
|
# @param [String] series
|
2708
2794
|
# Required. The series resource path. For example, `projects/`project_id`/
|
@@ -2735,6 +2821,39 @@ module Google
|
|
2735
2821
|
execute_or_queue_command(command, &block)
|
2736
2822
|
end
|
2737
2823
|
|
2824
|
+
# GetStorageInfo returns the storage info of the specified resource.
|
2825
|
+
# @param [String] resource
|
2826
|
+
# Required. The path of the instance to return storage info for, in the form: `
|
2827
|
+
# projects/`projectID`/locations/`locationID`/datasets/`datasetID`/dicomStores/`
|
2828
|
+
# dicomStoreID`/dicomWeb/studies/`studyUID`/series/`seriesUID`/instances/`
|
2829
|
+
# instanceUID``
|
2830
|
+
# @param [String] fields
|
2831
|
+
# Selector specifying which fields to include in a partial response.
|
2832
|
+
# @param [String] quota_user
|
2833
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2834
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2835
|
+
# @param [Google::Apis::RequestOptions] options
|
2836
|
+
# Request-specific options
|
2837
|
+
#
|
2838
|
+
# @yield [result, err] Result & error if block supplied
|
2839
|
+
# @yieldparam result [Google::Apis::HealthcareV1::StorageInfo] parsed result object
|
2840
|
+
# @yieldparam err [StandardError] error object if request failed
|
2841
|
+
#
|
2842
|
+
# @return [Google::Apis::HealthcareV1::StorageInfo]
|
2843
|
+
#
|
2844
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2845
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2846
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2847
|
+
def get_project_location_dataset_dicom_store_dicom_web_study_series_instance_storage_info(resource, fields: nil, quota_user: nil, options: nil, &block)
|
2848
|
+
command = make_simple_command(:get, 'v1/{+resource}:getStorageInfo', options)
|
2849
|
+
command.response_representation = Google::Apis::HealthcareV1::StorageInfo::Representation
|
2850
|
+
command.response_class = Google::Apis::HealthcareV1::StorageInfo
|
2851
|
+
command.params['resource'] = resource unless resource.nil?
|
2852
|
+
command.query['fields'] = fields unless fields.nil?
|
2853
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2854
|
+
execute_or_queue_command(command, &block)
|
2855
|
+
end
|
2856
|
+
|
2738
2857
|
# DeleteStudy deletes all instances within the given study. Delete requests are
|
2739
2858
|
# equivalent to the GET requests specified in the Retrieve transaction. The
|
2740
2859
|
# method returns an Operation which will be marked successful when the deletion
|
@@ -5373,6 +5492,48 @@ module Google
|
|
5373
5492
|
execute_or_queue_command(command, &block)
|
5374
5493
|
end
|
5375
5494
|
|
5495
|
+
# Rolls back messages from the HL7v2 store to the specified time. This method
|
5496
|
+
# returns an Operation that can be used to track the status of the rollback by
|
5497
|
+
# calling GetOperation. Immediate fatal errors appear in the error field, errors
|
5498
|
+
# are also logged to Cloud Logging (see [Viewing error logs in Cloud Logging](
|
5499
|
+
# https://cloud.google.com/healthcare/docs/how-tos/logging)). Otherwise, when
|
5500
|
+
# the operation finishes, a detailed response of type
|
5501
|
+
# RollbackHl7V2MessagesResponse is returned in the response field. The metadata
|
5502
|
+
# field type for this operation is OperationMetadata.
|
5503
|
+
# @param [String] name
|
5504
|
+
# Required. The name of the HL7v2 store to rollback, in the format of "projects/`
|
5505
|
+
# project_id`/locations/`location_id`/datasets/`dataset_id` /hl7V2Stores/`
|
5506
|
+
# hl7v2_store_id`".
|
5507
|
+
# @param [Google::Apis::HealthcareV1::RollbackHl7V2MessagesRequest] rollback_hl7_v2_messages_request_object
|
5508
|
+
# @param [String] fields
|
5509
|
+
# Selector specifying which fields to include in a partial response.
|
5510
|
+
# @param [String] quota_user
|
5511
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
5512
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
5513
|
+
# @param [Google::Apis::RequestOptions] options
|
5514
|
+
# Request-specific options
|
5515
|
+
#
|
5516
|
+
# @yield [result, err] Result & error if block supplied
|
5517
|
+
# @yieldparam result [Google::Apis::HealthcareV1::Operation] parsed result object
|
5518
|
+
# @yieldparam err [StandardError] error object if request failed
|
5519
|
+
#
|
5520
|
+
# @return [Google::Apis::HealthcareV1::Operation]
|
5521
|
+
#
|
5522
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5523
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5524
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5525
|
+
def rollback_hl7_v2_store_hl7_v2_messages(name, rollback_hl7_v2_messages_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
5526
|
+
command = make_simple_command(:post, 'v1/{+name}:rollback', options)
|
5527
|
+
command.request_representation = Google::Apis::HealthcareV1::RollbackHl7V2MessagesRequest::Representation
|
5528
|
+
command.request_object = rollback_hl7_v2_messages_request_object
|
5529
|
+
command.response_representation = Google::Apis::HealthcareV1::Operation::Representation
|
5530
|
+
command.response_class = Google::Apis::HealthcareV1::Operation
|
5531
|
+
command.params['name'] = name unless name.nil?
|
5532
|
+
command.query['fields'] = fields unless fields.nil?
|
5533
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5534
|
+
execute_or_queue_command(command, &block)
|
5535
|
+
end
|
5536
|
+
|
5376
5537
|
# Sets the access control policy on the specified resource. Replaces any
|
5377
5538
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
5378
5539
|
# PERMISSION_DENIED` errors.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-healthcare_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.65.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: 2024-
|
11
|
+
date: 2024-09-01 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.65.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|