class Google::Apis::HealthcareV1::QueryAccessibleDataRequest

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 error logs in Cloud Logging] ( cloud.google.com/healthcare/docs/how-tos/logging) and [ QueryAccessibleData] for a sample log entry).

Attributes

gcs_destination[RW]

The Cloud Storage location for export. Corresponds to the JSON property `gcsDestination` @return [Google::Apis::HealthcareV1::GoogleCloudHealthcareV1ConsentGcsDestination]

request_attributes[RW]

The values of request attributes associated with this access request. Corresponds to the JSON property `requestAttributes` @return [Hash<String,String>]

resource_attributes[RW]

Optional. The values of resource attributes associated with the type of resources being requested. If no values are specified, then all resource types are included in the output. Corresponds to the JSON property `resourceAttributes` @return [Hash<String,String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/healthcare_v1/classes.rb, line 3401
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/healthcare_v1/classes.rb, line 3406
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