class Google::Apis::HealthcareV1::DicomStore
Represents a DICOM store.
Attributes
User-supplied key-value pairs used to organize DICOM stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: p`Ll`p`Lo“ 0,62` Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [p`Ll`p`Lo`p`N`_-]`0,63` No more than 64 labels can be associated with a given store. Corresponds to the JSON property `labels` @return [Hash<String,String>]
Resource name of the DICOM store, of the form `projects/`project_id`/locations/ `location_id`/datasets/`dataset_id`/dicomStores/`dicom_store_id“. Corresponds to the JSON property `name` @return [String]
Specifies where to send notifications upon changes to a data store. Corresponds to the JSON property `notificationConfig` @return [Google::Apis::HealthcareV1::NotificationConfig]
Public Class Methods
# File lib/google/apis/healthcare_v1/classes.rb, line 1079 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/healthcare_v1/classes.rb, line 1084 def update!(**args) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @notification_config = args[:notification_config] if args.key?(:notification_config) end