Class: Google::Apis::HealthcareV1beta1::DicomFilterConfig
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::DicomFilterConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/healthcare_v1beta1/classes.rb,
generated/google/apis/healthcare_v1beta1/representations.rb,
generated/google/apis/healthcare_v1beta1/representations.rb
Overview
Specifies the filter configuration for DICOM resources.
Instance Attribute Summary collapse
-
#resource_paths_gcs_uri ⇒ String
The Cloud Storage location of the filter configuration file.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DicomFilterConfig
constructor
A new instance of DicomFilterConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DicomFilterConfig
Returns a new instance of DicomFilterConfig.
1235 1236 1237 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1235 def initialize(**args) update!(**args) end |
Instance Attribute Details
#resource_paths_gcs_uri ⇒ String
The Cloud Storage location of the filter configuration file. The gcs_uri
must be in the format gs://bucket/path/to/object
. The filter configuration
file must contain a list of resource paths separated by newline characters (\n
or \r\n). Each resource path must be in the format "/studies/studyUID
[/
series/seriesUID
[/instances/instanceUID
]]" The Cloud Healthcare API
service account must have the roles/storage.objectViewer
Cloud IAM role for
this Cloud Storage location.
Corresponds to the JSON property resourcePathsGcsUri
1233 1234 1235 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1233 def resource_paths_gcs_uri @resource_paths_gcs_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1240 1241 1242 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 1240 def update!(**args) @resource_paths_gcs_uri = args[:resource_paths_gcs_uri] if args.key?(:resource_paths_gcs_uri) end |