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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DicomFilterConfig
Returns a new instance of DicomFilterConfig
601 602 603 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 601 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
599 600 601 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 599 def resource_paths_gcs_uri @resource_paths_gcs_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
606 607 608 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 606 def update!(**args) @resource_paths_gcs_uri = args[:resource_paths_gcs_uri] if args.key?(:resource_paths_gcs_uri) end |