Class: Google::Apis::HealthcareV1::DicomFilterConfig
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::DicomFilterConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1/classes.rb,
lib/google/apis/healthcare_v1/representations.rb,
lib/google/apis/healthcare_v1/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.
1167 1168 1169 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1167 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
1165 1166 1167 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1165 def resource_paths_gcs_uri @resource_paths_gcs_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1172 1173 1174 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1172 def update!(**args) @resource_paths_gcs_uri = args[:resource_paths_gcs_uri] if args.key?(:resource_paths_gcs_uri) end |