Class: Google::Apis::HealthcareV1beta1::QueryAccessibleDataRequest
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::QueryAccessibleDataRequest
- 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
Queries all data_ids that are consented for a given use in the given Consent store and writes them to a specified destination. The returned Operation includes a progress counter for the number of User data mappings processed. Errors are logged to Cloud Logging (see Viewing logs and [QueryAccessibleData] for a sample log entry).
Instance Attribute Summary collapse
-
#gcs_destination ⇒ Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1ConsentGcsDestination
The Cloud Storage location for export.
-
#request_attributes ⇒ Hash<String,String>
The values of request attributes associated with this access request.
-
#resource_attributes ⇒ Hash<String,String>
The values of resources attributes associated with the type of data being requested.
Instance Method Summary collapse
-
#initialize(**args) ⇒ QueryAccessibleDataRequest
constructor
A new instance of QueryAccessibleDataRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ QueryAccessibleDataRequest
Returns a new instance of QueryAccessibleDataRequest.
4343 4344 4345 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 4343 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gcs_destination ⇒ Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1ConsentGcsDestination
The Cloud Storage location for export.
Corresponds to the JSON property gcsDestination
4329 4330 4331 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 4329 def gcs_destination @gcs_destination end |
#request_attributes ⇒ Hash<String,String>
The values of request attributes associated with this access request.
Corresponds to the JSON property requestAttributes
4334 4335 4336 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 4334 def request_attributes @request_attributes end |
#resource_attributes ⇒ Hash<String,String>
The values of resources attributes associated with the type of data being
requested. If no values are specified, then all data types are included in the
output.
Corresponds to the JSON property resourceAttributes
4341 4342 4343 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 4341 def resource_attributes @resource_attributes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4348 4349 4350 4351 4352 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 4348 def update!(**args) @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination) @request_attributes = args[:request_attributes] if args.key?(:request_attributes) @resource_attributes = args[:resource_attributes] if args.key?(:resource_attributes) end |